How to downgrade to Python 3.4 from 3.5

限于喜欢 提交于 2019-12-03 22:46:29

Uninstall Python 3.5 by going to control panel, uninstall a program, and then look for Python 3.5, click on it and press uninstall. After that download Python 3.4. I don't know any other ways but I think that should work.

If you have an Anaconda installation you can just type:

conda install python=3.4

And it installs 3.4, to re-install 3.5, it's

conda install python=3.5

It works in under a minute.

I was able to install Python 3.4 in a separate directory and then just change the default interpreter in PyCharm to use the new directory containing 3.4 instead.

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