LoginSignup
0
1

More than 5 years have passed since last update.

CentOS7 minimal install に Anaconda をインストール

Last updated at Posted at 2018-05-28

インストールに必要なライブラリを yum で インストール

sudo yum install git bzip2 -y

参考:lbzip2: exec 不能: そのようなファイルやディレクトリはありません

Anaconda のインストール(2018/12/11)

git clone https://github.com/yyuu/pyenv.git ~/.pyenv
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(pyenv init -)"' >> ~/.bashrc
source ~/.bashrc
pyenv install anaconda3-5.3.1
pyenv rehash
pyenv global anaconda3-5.3.1
echo 'export PATH="$PYENV_ROOT/versions/anaconda3-5.3.1/bin/:$PATH"' >> ~/.basic
source ~/.bashrc
conda update conda

参考:CentOS7にAnacondaの環境構築

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1