使用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.
则可以先使用:文章来源:https://www.toymoban.com/news/detail-515765.html
conda uninstall python
对当前版本python进行卸载,然后再使用conda install python=3.8安装即可。文章来源地址https://www.toymoban.com/news/detail-515765.html
到了这里,关于虚拟环境下更换python版本的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!