Update Python to 3.9 on Anaconda [duplicate]

房东的猫 提交于 2021-02-11 12:40:15

问题


I am trying to update python to 3.9 using the anaconda distribution using this command:

conda install python==3.9.0

However, there is no output but an error. All of the other methods I have seen are extremely difficult, so is there an easier way of updating python (preferably using the terminal- I am on MacOS)? I am unsure if Python 3.9.0 is even on the condo distribution, since when you go to the Anaconda website, Anaconda comes pre-packaged with Python 3.8.


回答1:


Try this:

conda create -c conda-forge python=3.9 -n py39-demo


来源:https://stackoverflow.com/questions/64516727/update-python-to-3-9-on-anaconda

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!