rails server

estis2016/10/10 (月) 08:07 に投稿

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 。

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

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

gcc インストール

estis2016/10/10 (月) 07:24 に投稿

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/

Ruby インストール

estis2016/10/10 (月) 06:02 に投稿

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]

Git インストール

estis2016/10/08 (土) 16:20 に投稿

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