Upgrade to python 3.8 using conda
问题 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? 回答1: You can update your python version to 3.8 in conda using the command conda install -c anaconda python=3.8 as per https://anaconda.org/anaconda/python. Though not all packages support 3.8 yet, running conda update --all may resolve some dependency failures. You can also create a new environment called py38 using this