Python 3 is the latest major version of Python, a scripting language used my very many open source developers.
21
votes
4answers
16k views
How to install Python 3.3?
Downloaded Python 3.3 from the official site but no idea how to install it.
I'm using Ubuntu 12.04
1
vote
3answers
3k views
need to have 2 versions of python?
Well, as I say, I need to have 2 versions of python installed on my PC.
The first must be the latest one in order to use youtube-dl, and the second must be the 2.7 version to use it for a course ( ...
5
votes
2answers
4k views
12.10 has Python 3.2.3 default, does this impact existing python tools?
Ubuntu 12.10 has Python 3.2.3 default, so does this impact existing python tools, designed to be used with older python 2.x? There was a discussion in HackerNews on the same. I'm a bit apprehensive ...
2
votes
3answers
200 views
Python 3 error when running the print command
All I wrote in the interpreter was as follows:
>>> print "Hello, World!"
File "<stdin>", line 1
print "Hello, World!"
^
SyntaxError: invalid syntax
How ...
4
votes
2answers
727 views
Changing Python default in 12.04 LTS
I have downloaded and installed python 3.2.3 for Ubuntu/Debian. Also IDLE IDE for 3.2.3.
If I execute IDLE for 3.2.3 explicitely, 3.2.3 runs under IDLE and all is well.
But if I go to a terminal ...
3
votes
1answer
510 views
How to create a virtualenv with Python3.3?
I'm running Precise Pangolin amd64. I installed Python 3.3 from ppa:fkrull/deadsnakes.
Now I want to actually use this new Python version in a virtualenv. But How can I do this? I get the following ...