How to install python3.9 with conda?

前端 未结 3 1041
长发绾君心
长发绾君心 2020-12-07 00:31

I\'m trying to install python 3.9 in a conda enviroment. I tried creating a new conda env using the following command,

conda create --name myenv python=3.9
         


        
3条回答
  •  执笔经年
    2020-12-07 01:15

    You can now simply just run

    conda create --name myenv python=3.9

    And it will create your python 3.9 virtual environment simply.

提交回复
热议问题