虚拟环境下更换python版本Solving environment: failed with initial frozen solve. Retrying with flexible solve.

使用python -V命令查看当前虚拟环境的python版本:

python -V

可知python版本为为3.7.15,现在我想把它升级为3.8。

使用命令:

conda install python=3.8

可知python版本已经变为3.8。

如果在conda install python=3.8中遇到问题,例如:

Solving environment: failed with initial frozen solve. Retrying with flexible solve.

 则可以先使用:

conda uninstall python

 当当前版本python进行卸载,然后再使用conda install python=3.8安装即可。