0% found this document useful (0 votes)
31 views

Python Installation

Python can be installed by downloading Python 3.6 from the Python website and running the installer. Pip, a package manager for Python, is then installed by downloading and running get-pip.py from the command line. Key libraries for data science like NumPy, SciPy, Matplotlib, IPython, Jupyter, Pandas, Sympy, and scikit-learn can then be installed with pip. Jupyter Notebook can be launched from the command line to use an interactive web-based notebook environment.

Uploaded by

Mahdi Braiteh
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views

Python Installation

Python can be installed by downloading Python 3.6 from the Python website and running the installer. Pip, a package manager for Python, is then installed by downloading and running get-pip.py from the command line. Key libraries for data science like NumPy, SciPy, Matplotlib, IPython, Jupyter, Pandas, Sympy, and scikit-learn can then be installed with pip. Jupyter Notebook can be launched from the command line to use an interactive web-based notebook environment.

Uploaded by

Mahdi Braiteh
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Python Installation:

CENG566L: Installing python

1. Download and install Python 3.6 (64 bit)


a) Link: https://www.python.org/downloads/release/python-367/
Choose the file name Windows x86-64 executable installer
b) Run the file and choose Customized Installation, make sure you click Add Python To
Path.

c. Select all Optional Features


Installing Pip
Once you’ve confirmed that Python is correctly installed,
you can proceed with installing Pip.
2. Download get-pip.py to a folder on your computer.
3. Open a command prompt and navigate to the folder
containing get-pip.py.
4. Run the following command:
python get-pip.py
5. Pip is now installed!
You can verify that Pip was installed correctly by opening
a command prompt and entering the following command:
pip -V
You should see output similar to the following:
pip 18.0 from
c:\users\administrator\appdata\local\programs\python\py
thon37\lib\site-packages\pip (python 3.7)
Installing Jupyter and needed
libraries with pip
If you have Python 3 installed (which is recommended): (check if
python runs under python3 or just python. In case it is python replace
python3 with python).

python -m pip install --upgrade pip


python -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
pip install -U scikit-learn

to launch jupyter (Windows):

jupyter notebook

You might also like