Python Forum

Full Version: Anaconda pip install mpyc Error pip-script.py is not present
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.
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
@snippsat oh man thanks solved Heart