Skip to content

Instantly share code, notes, and snippets.

@guy4261
Last active August 29, 2015 14:27
Show Gist options
  • Save guy4261/b5bbca6af0fda02cd077 to your computer and use it in GitHub Desktop.
Save guy4261/b5bbca6af0fda02cd077 to your computer and use it in GitHub Desktop.
Installing GraphLab using Miniconda on CentOS
# Download an install miniconda
wget -nv https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh
chmod u+x Miniconda-latest-Linux-x86_64.sh
./Miniconda-latest-Linux-x86_64.sh -b -f
# -b means batch install using the defaults: that means .bashrc does not change so we do it outselves.
cp .bashrc .bashrc-miniconda.bak
echo "
# added by Miniconda 3.10.1 installer
export PATH=\"/home/guyrap/miniconda/bin:\$PATH\"
" >> /home/guyrap/.bashrc
# Simulate disconnecting and reconnecting
source ~/.bashrc
# Install other packages
conda install -y numpy
conda install -y scipy
conda install -y matplotlib
conda install -y pandas
conda install -y scikit-learn
conda install -y seaborn
conda install -y "ipython[notebook]"
conda install -y pip
conda install -y python=2.7.9
pip install graphlab-create==1.5.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment