C:\Users\Sriram A>pip install pandas
Fatal error in launcher: Unable to create process
using '"C:\Python39\python.exe"
"C:\Program Files (x86)\Python39\Scripts\pip.exe"
install pandas': The system cannot find the file specified.
CodePudding user response:
Set the Environment variable for Python then you won't have go to the specified location.
CodePudding user response:
Assuming you also installed the python launcher py you will automaitcally run the latest version of python installed with:
py -m pip install pandas
If you want a specific version, you can run:
py -3.10 -m pip install pandas
To see all installed python versions included in your py-launcher, simply run py -0
.
If not using the py-launcher you can run:
pip3.10 install pandas
To choose the specific python version for installing packages.