How to downgrade the Python Version from 3.8 to 3.7 on windows?

生来就可爱ヽ(ⅴ<●) 提交于 2021-01-29 20:57:48

问题


How can I downgrade the Python version from 3.8 to 3.7 in my virtual env? I have to install tensorflow 1.14, therefore I'm trying to downgrade the Python version. Is there a command for it using pip?


回答1:


You can install multiple Python versions and set separate environment variables for each version.

If you use Anaconda you can also create separate virtual environments with different python versions:

conda create --name myenv --python=3.7

Or you can use something like pyenv-win to manage multiple Python versions.



来源:https://stackoverflow.com/questions/62794105/how-to-downgrade-the-python-version-from-3-8-to-3-7-on-windows

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