Could not find version that satisfies conda for python 3

I want to install the conda not anaconda command, but I have this erreur all the 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> 
+5
source share
1 answer

You can install conda 4.2.7 using pip and then upgrade 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 with conda update conda .

+2
source

Source: https://habr.com/ru/post/1266702/


All Articles