Python

By estis , 14 12月, 2017

https://www.anaconda.com/download/
から、ダウンロード。

インストールすると、
~/.bash_profile に、
# added by Anaconda3 5.0.1 installer
export PATH="/Users/[アカウント]/anaconda3/bin:$PATH"
が、追記される。
※ macOS の場合。 10.13.2 で確認。

By estis , 10 10月, 2016

wget https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tgz
tar xvf Python-3.5.1.tgz
cd Python-3.5.1/
./configure --prefix=/home/myaccount/
make
make install

$python3 -V
Python 3.5.1

By estis , 29 6月, 2014

NLTKやNumpy、Matplotlibのインストール。
7ページ図1-2を表示するためにいろいろやった。(しかし、エラーはなくなったが、プロット画像は表示されない)

OS X 10.9.3 のターミナルから、
Cent0S 6.5 へ接続しての操作。
Python 2.6.6 環境。

前後しながら様々試みたが、整理すると

curl https://bootstrap.pypa.io/ez_setup.py -o - | python
easy_install pip

yum install python-devel
yum install freetype
yum install freetype-devel
yum install gcc-gfortran
yum install blas-devel
yum install lapack-devel
yum install libpng-devel
yum install readline-devel
yum install tk tk-devel tcl tcl-devel
yum install tkinter

pip install numpy