I want to install conda command not anaconda but I have this erreur all time :
C:\Windows\system32>pip install conda
Collecting conda
Using cached conda-4.3.13.tar.gz
Collecting pycosat>=0.6.1 (from conda)
Using cached pycosat-0.6.1.tar.gz
Collecting requests>=2.12.4 (from conda)
Using cached requests-2.13.0-py2.py3-none-any.whl
Collecting ruamel.yaml>=0.11.14 (from conda)
Using cached ruamel.yaml-0.14.5.tar.gz
Collecting menuinst (from conda)
Could not find a version that satisfies the requirement menuinst (from conda)
(from versions: )
No matching distribution found for menuinst (from conda)
C:\Windows\system32>
Solution 1: Just update pip You just need to update pip and your error will be resolve.
You can install pip in the current conda environment with the command conda install pip , as discussed in Using pip in an environment. If there are instances of pip installed both inside and outside the current conda environment, the instance of pip installed inside the current conda environment is used.
How do I Install a Specific Version of a Python Package? To install a specific version of a Python package you can use pip: pip install YourPackage==YourVersion . For example, if you want to install an older version of Pandas you can do as follows: pip install pandas==1.1. 3 .
You can install conda 4.2.7 using pip and then update it to the latest version.
auxlib is required in python 3.6.1. Install it using pip3 install auxlib
Now install conda 4.2.7 using pip3 install conda==4.2.7
and then update it using conda update conda
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With