Forums

I want to use Python 2.6

Default Python version is 2.7. but i need to run 2.6 ! Is there a way to change that ? :3

https://puu.sh/en03b/1720fdf6f9.png

From the command-line you can just run python2.6 instead of python, or change your shebang line appropriately. If you're talking about the web apps, I'm not so sure about that - it's true that the web app GUI doesn't offer any Python version earlier than 2.7, but you might be able to use a virtualenv to workaround it.

Thanks!