I\'ve installed new PyCharm that uses django v1.71(default), but I would like to change it to v1.68.
How can we achieve this with PyCharm?
PyCharm
You don't do that with Pycharm, Pycharm just detects the installed version. You change the version with pip:
pip uninstall django # just for explicity pip install django==1.6.8
Make sure you use virtual environments if you run multiple applications on the same machine.