Last active
August 29, 2015 14:27
-
-
Save guy4261/b5bbca6af0fda02cd077 to your computer and use it in GitHub Desktop.
Installing GraphLab using Miniconda on CentOS
This file contains hidden or 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
# 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