apt-get update
apt-get -y upgrade
apt-get install -y man
apt-get install -y vim
apt-get install -y aria2
apt-get install -y curl
apt-get install -y wget
apt-get install -y bzip2
apt-get -y install git
git config --global user.name "Kengo Suzuki"
git config --global user.email "[email protected]"
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-4.1.1 # Latest Anaconda
echo 'export PATH="$PYENV_ROOT/versions/anaconda3-4.1.1/bin/:$PATH"' >> ~/.bashrc
conda update conda # Just Making sure to update conda -y
mkdir workspace
cd workspace
jupyter notebook --port=8888 --no-browser --ip=0.0.0.0