Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not find a version that satisfies conda for python 3

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>
like image 459
Walid Bousseta Avatar asked Apr 13 '17 16:04

Walid Bousseta


People also ask

How do you fix could not find a version that satisfies the requirement?

Solution 1: Just update pip You just need to update pip and your error will be resolve.

Can I install Conda with pip?

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 pip?

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 .


1 Answers

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.

like image 193
Mani Shankar Avatar answered Sep 19 '22 12:09

Mani Shankar