Skip to content

Instantly share code, notes, and snippets.

@bbarrows
Created December 31, 2018 01:50
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 bbarrows/e9684f4323ab11a7e1e9a08344579581 to your computer and use it in GitHub Desktop.
Save bbarrows/e9684f4323ab11a7e1e9a08344579581 to your computer and use it in GitHub Desktop.
Anaconda Python Linux Install
#!/bin/bash
# Download from
# https://www.anaconda.com/download/
curl -O https://repo.continuum.io/archive/Anaconda3-2018.12-Linux-x86_64.sh
bash Anaconda3-2018.12-Linux-x86_64.sh
~/anaconda3/bin/conda create -n py35 python=3.5 tensorflow ipython
# Then just hit enter through the install add the following to ur zshrc
#
# export PATH=$HOME/anaconda3/bin/:$PATH
# source $HOME/anaconda3/etc/profile.d/conda.sh
# alias py35='source activate py35'
#
#
# This is after running this to create the py 35 env:
# ~/anaconda3/bin/conda create -n py35 python=3.5 tensorflow ipython
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment