Upgrade to python 3.8 using conda

后端 未结 4 1664
情话喂你
情话喂你 2020-12-07 14:23

Python 3.8.0 is out, but I haven\'t been able to find any post on how to update to python 3.8 using conda - maybe they will wait for the official release? Any suggestions?

4条回答
  •  鱼传尺愫
    2020-12-07 15:05

    Open Anaconda Prompt (base):

    1. Update conda:
    conda update -n base -c defaults conda
    
    1. Create new environment with Python 3.8:
    conda create -n python38 python=3.8
    
    1. Activate your new Python 3.8 environment:
    conda activate python38
    
    1. Start Python 3.8:
    python
    

提交回复
热议问题