conda-forge / miniforge

A conda-forge distribution.
https://conda-forge.org/miniforge
Other
5.99k stars 317 forks source link

Cannot create environment with specified version of python #403

Closed taise-hikawa closed 1 year ago

taise-hikawa commented 1 year ago

Comment:

I wanted to create environment with specified version of python, but I couldn't.

$ conda create -n py39 python=3.9
$ conda activate py39
$ conda info
python version : 3.8.6.final.0

Are there any other operations required?

environment

update (2023/01/13 06:08(GMT))

I installed it thinking I should use arm64 support, but it didn't solve the problem.

$ wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-MacOSX-arm64.sh
isuruf commented 1 year ago

conda info gives you the python version of the base environment. run python --version.

taise-hikawa commented 1 year ago

Thank you very much. Problem solved.