-2
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.

Umar.H
  • 22,559
  • 7
  • 39
  • 74
Sriram A
  • 1
  • 1
  • 3
    Your question body states, "The system cannot find the file specified", yet your output shows, "Unable to create process". Can you please clarify your question and information, by using the [edit] facility. I note also that you are using a 32-bit version of `pip.exe`, so please be certain that you're not trying to access 64-bit processes or locations from the wrong architecture. – Compo Jul 20 '22 at 11:39
  • https://stackoverflow.com/search?q=%5Bpip%5D+Fatal+error+in+launcher%3A+Unable+to+create+process+using – phd Jul 20 '22 at 13:20

2 Answers2

1

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.

MrWorldWide
  • 418
  • 4
  • 6
-1

Set the Environment variable for Python then you won't have go to the specified location.

Anurag
  • 43
  • 6