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

pre_class-python-library-installation-instructions

The document provides a step-by-step guide for installing Python and various libraries using pip. It outlines the process of downloading the Python installer, completing the installation, and then installing libraries such as numpy, pandas, SciPy, Matplotlib, and scikit-learn. Each library installation is accompanied by the specific command to be entered in the Command Prompt.

Uploaded by

Jhenkar Cm0316
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

pre_class-python-library-installation-instructions

The document provides a step-by-step guide for installing Python and various libraries using pip. It outlines the process of downloading the Python installer, completing the installation, and then installing libraries such as numpy, pandas, SciPy, Matplotlib, and scikit-learn. Each library installation is accompanied by the specific command to be entered in the Command Prompt.

Uploaded by

Jhenkar Cm0316
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

Python & Libraries Installation

Python Installation
Step – 1: Download the Python installer from the Python downloads page at
https://www.python.org/downloads.

Step – 2: Click on "Download Python 3.x.x." to download the installer.


a. Double click the file to start the installation process. Simply keep clicking on
"Next" to accept all of the defaults.
b. If you are asked if you want to install software on this computer, click on
"Yes."
c. To exit the installer and complete the Python installation, click on "Finish."

Step – 3: Upon completion of Python installation, the following Python 3.x.x will
appear in your Windows Command Menu:
Step – 4: You are now ready to learn the Python language when you click the on the
Python’s IDLE (Integrated Development & Learning Environment) the following
screen will appear:
Python Libraries Installation

pip installation

1. Copy get-pip.py to .ipython directory using the Command Prompt


2. Type python get-pip.py to install pip.

3. Type in the following command at the command prompt: pip help

If pip responds, then pip is installed. Otherwise, there will be an error saying
the program could not be found.
numpy library installation

4. Navigate to numpy · PyPI

5. Type pip install numpy==1.22.1


pandas library installation
How to Install Pandas in Python | Python Central

6. Enter the command pip install pandas on the terminal.


SciPy library installation
SciPy Installation - Install SciPy for SciPy Programming - TechVidvan

7. Enter pip install scipy at the Command Prompt terminal .


Matplotlib library installation
How to install matplotlib in Python? (tutorialspoint.com)

8. Enter pip install matplotlib at the Command Prompt terminal.


sklearn library installation

9. Enter pip install scikit-learn at the Command Prompt terminal.

You might also like