I got both python2 and python3 installed in my debian machine. But when i try to invoke the python interpreter by just typing 'python' in bash, python2 pops up and not python3. Since I am working with the latter at the moment, It would be easier to invoke python3 by just typing python. Please guide me through this.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
the only somehow safe way would be to use an alias in your shell, by placing
into your this way the system scripts depending on python being python2 won't be affected. |
|||
|
|
|
Well, you can simply create a
|
|||
|
|
python3its just an extra letter and then you can keep both versions easily accessible in case you need version2. – Lostsoul May 3 '12 at 15:17pythonis easier than typingpython3than using an alias (alias py3="python3") would make it even easier! – tMC May 3 '12 at 18:14