Skip to content

Instantly share code, notes, and snippets.

@geekwhocodes
Last active November 30, 2017 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geekwhocodes/4d7991c2f1af2e8960cc16131655c3c2 to your computer and use it in GitHub Desktop.
Save geekwhocodes/4d7991c2f1af2e8960cc16131655c3c2 to your computer and use it in GitHub Desktop.
Install minicoda on ubuntu
mkdir miniconda && cd miniconda
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda3.sh
chmod +x miniconda3.sh
bash miniconda3.sh -b
echo 'export PATH="$HOME/miniconda3/bin:$PATH"' >> $HOME/.bashrc
rm -r -f $HOME/miniconda
sudo apt-get install build-essential -y
conda create --name gwcpy python=3.5 -y
source activate gwcpy
pip install numpy
pip install pandas
pip install scipy
pip install sklearn
pip install ipython
pip install PyStemmer
pip install stemming
pip install matplotlib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment