Created
November 20, 2019 01:49
-
-
Save JiaweiZhuang/fdca59d17380c4ab08b73d09a84acf30 to your computer and use it in GitHub Desktop.
miniconda install command
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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