How to Install Python
Step - 1: Installation on Windows
Visit the link https://www.python.org/downloads/ to download the latest release
of Python. In this process, we will install Python 3.8.6 on our Windows operating
system. When we click on the above link, it will bring us the following page.
Click on Download Python 3.9.5 Button.
Step - 2: Click on the Install Now
Double-click the executable file, which is downloaded; the following window will open.
Select Customize installation and proceed. Click on the Add Path check box, it will set
the Python path automatically.
We can also click on the customize installation to choose desired location and features.
Other important thing is install launcher for the all user must be checked.
Step - 3 Installation in Process
Now, try to run python on the command prompt. Type the command python -version in
case of python3.
We are ready to work with the Python.
How to Install Python Module Numpy, scipy and
pandas
NumPy doesn't come bundled with Python. We have to install it using the python
pip installer.
Step 1: Open Command Prompt From Windows.
Press Ctrl + R
Type Cmd and press OK
Execute the following command.
>pip install numpy (press enter, make sure INTERNET is ON)
>pip install scipy (press enter, make sure INTERNET is ON)
>pip install pandas (press enter, make sure INTERNET is ON)
Now you get successfully installed all package.