Reputation: 1
I cannot install ipython in cmd:
when I enter pip install ipython
, it gives this error:
ERROR: Could not install packages due to an OSError: [Errno 2] No such file or directory: 'C:\Users\QR-Center\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.12_qbz5n2kfra8p0\LocalCache\local-packages\Python312\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\packages\ssl_match_hostname\_implementation.pyi'
What is the problem here?
Upvotes: 0
Views: 64
Reputation: 21
Make sure you are using the correct versions of Python and pip. Check with these commands:
python --version
pip --version
You could also check and update pip to the latest version:
python -m pip install --upgrade pip
Upvotes: -1