In "Python Installation from Source in Linux" and "Data Science Tools Installation in Linux" we have seen, how to install these tools on linux, Today we will learn how to setup these tools on Windows -
Python Installation:
1. Download the Python Windows installer from here -> https://www.python.org/downloads/release/python-2711/
2. Install it as we install any software on windows
3. Now, setup the Environment Variable -
a. If you haven’t played with environment variables before, just stick to following these instructions as you can set them up through the Windows GUI.
b. Right click on "My Computer", select "Properties" > "Advanced system settings" and click on the "Environment Variables" button
c. In the System Variables box, find the variable called "path" and click on the "Edit…" button
d. In the "Variable value" box, at the end of the entry, add the following text: ;C:\Python27;C:\Python27\Scripts (change the path as per your installation)
e. Click "OK" a couple of times and hey presto, your environment variables are set up.
f. Open cmd and type command 'python', if you get the python prompt we are good else check the steps once again.
4. The next step in the process is to set up easy_install and so we need to go to the setuptools page (links to version 0.8) and download the ez_setup.py script. You can download it from here -> https://bitbucket.org/pypa/setuptools/raw/0.8/ez_setup.py. and put this in python script directory (C:\Python27\Scripts)
5. Open a command prompt and type python ez_setup.py install – you’ll see a load of code whizz by which will hopefully end as follows;
C:\Python27> python ez_setup.py install
Processing dependencies for setuptools==0.8
Finished processing dependencies for setuptools==0.8
C:\Python27>
6. easy_install has now been set up and you can test to see if it is there, by typing easy_install in to a command prompt, which will throw an error about no URLs, you know that the tool has been set up successfully.To use easy_install to get new libraries, just use the following syntax: easy_install <library name>
IPython Installation:
C:\Python27> easy_install ipython
Jupyter notebook InstallationC:\Python27\Scripts> pip install jupyter
You can run the jupyter notebook as below -C:\Python27\Scripts>jupyter notebook
Graphlab Create Installation
C:\Python27\Scripts>
pip install --upgrade --no-cache-dir https://pypi.python.org/packages/source/G/GraphLab-Create/GraphLab-Create-1.7.1.tar.gz#md5=caa4b1f78625a278dd016400d15bc5bd
https://www.facebook.com/datastage4you
https://twitter.com/datagenx
https://plus.google.com/+AtulSingh0/posts
https://groups.google.com/forum/#!forum/datagenx
No comments:
Post a Comment