I'm trying to create an anaconda environment with Python3.2 but it seems that anaconda only supports 3.4+. Is it possible to use Python3.2 with anaconda environment? How?
okuoub@iMac>> conda create -n myenv python=3.2
Solving environment: failed
PackagesNotFoundError: The following packages are not available from current channels:
- python=3.2
Current channels:
- https://repo.anaconda.com/pkgs/main/osx-64
- https://repo.anaconda.com/pkgs/main/noarch
- https://repo.anaconda.com/pkgs/free/osx-64
- https://repo.anaconda.com/pkgs/free/noarch
- https://repo.anaconda.com/pkgs/r/osx-64
- https://repo.anaconda.com/pkgs/r/noarch
- https://repo.anaconda.com/pkgs/pro/osx-64
- https://repo.anaconda.com/pkgs/pro/noarch
To search for alternate channels that may provide the conda package you're
looking for, navigate to
https://anaconda.org
and use the search bar at the top of the page.
When running conda search I get only 2.7- and 3.3+:
okuoub@iMac>> conda search python
...
python 2.7.14 hd74e306_15 pkgs/main
python 2.7.14 hde5916a_29 pkgs/main
python 2.7.14 he768d2d_19 pkgs/main
python 2.7.14 hed931fe_16 pkgs/main
python 3.3.0 3 pkgs/free
python 3.3.0 4 pkgs/free
python 3.3.1 0 pkgs/free
...
When running conda info:
okuoub@iMac>> conda info
active environment : None
user config file : /Users/okuoub/.condarc
populated config files :
conda version : 4.5.1
conda-build version : 3.0.27
python version : 3.6.3.final.0
base environment : /Users/okuoub/anaconda3 (writable)
channel URLs : https://repo.anaconda.com/pkgs/main/osx-64
https://repo.anaconda.com/pkgs/main/noarch
https://repo.anaconda.com/pkgs/free/osx-64
https://repo.anaconda.com/pkgs/free/noarch
https://repo.anaconda.com/pkgs/r/osx-64
https://repo.anaconda.com/pkgs/r/noarch
https://repo.anaconda.com/pkgs/pro/osx-64
https://repo.anaconda.com/pkgs/pro/noarch
package cache : /Users/okuoub/anaconda3/pkgs
/Users/okuoub/.conda/pkgs
envs directories : /Users/okuoub/anaconda3/envs
/Users/okuoub/.conda/envs
platform : osx-64
user-agent : conda/4.5.1 requests/2.18.4 CPython/3.6.3 Darwin/14.5.0 OSX/10.10.5
UID:GID : 501:20
netrc file : None
offline mode : False
conda create -n myenv python=3.2
? – Oilstoneconda search python
and fromconda info
? I'm guessing there must be something wrong with your channel configuration. – Oilstone