Skip to content

Instantly share code, notes, and snippets.

@karimkhanp
Last active June 17, 2016 10:46
Show Gist options
  • Save karimkhanp/e70b9d12a32ef67778096b789106c892 to your computer and use it in GitHub Desktop.
Save karimkhanp/e70b9d12a32ef67778096b789106c892 to your computer and use it in GitHub Desktop.
Ubuntu new server installation
sudo apt-get install build-essential
wget https://www.python.org/ftp/python/2.7.6/Python-2.7.6.tar.xz
tar -xf Python-2.7.6.tar.xz
cd Python-2.7.6
./configure
make
make install
sudo apt-get install build-essential python-dev python-setuptools python-numpy python-scipy
sudo apt install python-pip
sudo pip install -U scikit-learn
sudo pip install -U nltk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment