Last active
June 17, 2016 10:46
-
-
Save karimkhanp/e70b9d12a32ef67778096b789106c892 to your computer and use it in GitHub Desktop.
Ubuntu new server installation
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
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