Skip to content

Instantly share code, notes, and snippets.

@JiaweiZhuang
Created November 20, 2019 01:49
Show Gist options
  • Save JiaweiZhuang/fdca59d17380c4ab08b73d09a84acf30 to your computer and use it in GitHub Desktop.
Save JiaweiZhuang/fdca59d17380c4ab08b73d09a84acf30 to your computer and use it in GitHub Desktop.
miniconda install command
cd $HOME
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
bash miniconda.sh -b -p miniconda
echo ". $HOME/miniconda/etc/profile.d/conda.sh" >> ~/.bashrc
source ~/.bashrc
conda create -y -n py37 python=3.7
conda activate py37
pip install jupyter pandas matplotlib
ssh ... -L 8899:localhost:8899
jupyter notebook --NotebookApp.token='' --no-browser --port=8899
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment