Python Forum
Anaconda pip install mpyc Error pip-script.py is not present - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Anaconda pip install mpyc Error pip-script.py is not present (/thread-35781.html)



Anaconda pip install mpyc Error pip-script.py is not present - Anldra12 - Dec-13-2021

I want o to install mpyc package using anaconda command prompt CMD. but it returns this error, How to address to solve such an issue.
Error 'D:\Ananconda3\Scripts\pip-script.py' is not present.
(base) C:\Users\dell>pip install mpyc
Script file 'D:\Ananconda3\Scripts\pip-script.py' is not present.


RE: Anaconda pip install mpyc Error pip-script.py is not present - snippsat - Dec-13-2021

pip is broken in your Anaconda Version.
Try,with (base) active as you have now.
conda install --force-reinstall pip
# Or
python -m ensurepip --default-pip



RE: Anaconda pip install mpyc Error pip-script.py is not present - Anldra12 - Dec-13-2021

@snippsat oh man thanks solved Heart