Python installation in Windows

To install the python in windows plateform, Please follow the below steps:

Step 1: Install the Scoop, open the power shell and run the below commands

Set-ExecutionPolicy RemoteSigned -scope CurrentUser
iwr -useb get.scoop.sh | iex

Step 2: Installation of Cmder

scoop install cmder

Step 3: Install python

scoop install python

Step 4: Run the “python” in cmdr, you will see popup window to install the python

Step 5: Click on install, then after you will be ready to python in your projects

Step 6: Run the below comand to see the python version

python -V
  • 23
    Shares