By estis , 11 10月, 2016

の前に pip をアップグレード。
pip3 install --upgrade pip

pip install django

$pip list
Django (1.10.2)
pip (8.1.2)
setuptools (18.2)

By estis , 11 10月, 2016

w3m http://jp2.php.net/get/php-5.6.26.tar.bz2/from/this/mirror
tar xvf php-5.6.26.tar.bz2
cd php-5.6.26/

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 , 10 10月, 2016

wget https://nodejs.org/dist/v6.7.0/node-v6.7.0.tar.gz
tar xvf node-v6.7.0.tar.gz
cd node-v6.7.0/
./configure --prefix=/home/myaccount/
make
make install

$node -v
v6.7.0

※ CentOS 6.8 では、gcc のバージョンアップが必要。

By estis , 10 10月, 2016

rails server
すると、
 lib/ruby/gems/2.3.0/gems/bundler-1.13.2/lib/bundler/runtime.rb:94:in `rescue in block (2 levels) in require': There was an error while trying to load the gem 'uglifier'. (Bundler::GemRequireError)
Gem Load Error is: Could not find a JavaScript runtime. See https://github.com/rails/execjs for a list of available runtimes.
と言われた。

Gemfile で、
# gem 'therubyracer', platforms: :ruby
のコメントアウトを外して、
bundle install 。

−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−

デフォルトでは、外部から接続できないので、

By estis , 10 10月, 2016

wget http://ftp.tsukuba.wide.ad.jp/software/gcc/infrastructure/gmp-6.1.0.tar.bz2
tar xvf gmp-6.1.0.tar.bz2
cd gmp-6.1.0/
./configure --prefix=/home/myaccount/
make
make check(しないと、怒られる)
make install

wget http://ftp.tsukuba.wide.ad.jp/software/gcc/infrastructure/mpfr-3.1.4.tar.bz2
tar xvf mpfr-3.1.4.tar.bz2
cd mpfr-3.1.4/
./configure --prefix=/home/myaccount/ --with-gmp=/home/myaccount/
make
make install

wget http://ftp.tsukuba.wide.ad.jp/software/gcc/infrastructure/mpc-1.0.3.tar.gz
tar xvf mpc-1.0.3.tar.gz
cd mpc-1.0.3/

By estis , 10 10月, 2016

wget https://cache.ruby-lang.org/pub/ruby/2.3/ruby-2.3.1.tar.gz
tar xvf ruby-2.3.1.tar.gz
cd ruby-2.3.1/
./configure --prefix=/home/myaccount/
make
make install

$ruby -v
ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-linux]

By estis , 8 10月, 2016

wget https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/git-core/git-1.8.5.5.tar.gz
tar xf git-1.8.5.5.tar.gz
cd git-1.8.5.5/
./configure --prefix=/home/myaccount/
make
make install

で、
/home/myaccount/bin/ にインストールされる。

.bash_profile に、
export PATH=~/bin:$PATH
を追記。

$git --version
git version 1.8.5.5