'I keep getting this error when trying to use pip install. I am new to coding and quite confused
$ pip install windows-curses
Fatal error in launcher: Unable to create process using '"C:\Python310\python.ex e" "C:\Python310\Scripts\pip.exe" install windows-curses': The system cannot fi nd the file specified.
Solution 1:[1]
It looks like you didn't select to add Python to path in the installer, or you never installed pip. Try adding Python to path by reading this article: How to add Python to PATH variable in Windows. You could also try installing pip if you haven't already by running this command in command prompt: py -m ensurepip --upgrade. If the command doesn't work, try running command prompt in administrator. If all else fails, try reinstalling the newest version of Python. Hope this helped!
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Brennan Reinhard |
