Some stable diffusion extensions require the use of specific Python packages. In my case, I need to download open cv package. But everytime I try to download it, it shows: Fatal error in launcher: Unable to create process using '"D:\Python\python.exe" "D:\Python\Scripts\pip.exe" install opencv-python ': The system cannot find the file specified
What do I do to solve this error?
Asked
Active
Viewed 18 times
0

Riddhipratim Adhikari
- 55
- 1
- 9
1 Answers
0
- Firstly, make sure you have already installed pip in your device.
pip -V
It should display your current pip version...
You don't need to go to "D" Drive to run pip
If it is not working, you can make it by local installation. Download your required package from https://pypi.org/project/opencv-python/#files (It will be .whl format). Place in a local folder and execute the following command.
pip install "your local folder path"

Samael2021
- 41
- 8