Django インストール
の前に pip をアップグレード。
pip3 install --upgrade pip
pip install django
$pip list
Django (1.10.2)
pip (8.1.2)
setuptools (18.2)
- Django インストール の続きを見る
- コメントを投稿するにはログインまたは登録をしてください
- 閲覧数 1
の前に pip をアップグレード。
pip3 install --upgrade pip
pip install django
$pip list
Django (1.10.2)
pip (8.1.2)
setuptools (18.2)
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/
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
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 のバージョンアップが必要。
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 。
−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−−
デフォルトでは、外部から接続できないので、
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/
gem install rails
$rails -v
Rails 5.0.0.1
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]
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
/etc ディレクトリに多くがある。
p.137 表 3.3-6 Linux の主な設定ファイル