0
votes
0answers
34 views

12.04: I installed python 3.3 and now I can install or remove anything

I downloaded the lastest python 3 source, built it and installed it along side 2.7. These are the commands I used to build and install it: ./configure make make test sudo checkinstall -D make ...
0
votes
1answer
40 views

Python - NameError: global name 'plus' is not defined

So I am creating a program using shelve and I keep getting this error message. I can not for the life of me figure it out and google hasn't been much help. Is this a problem with Ubuntu/Python working ...
0
votes
3answers
63 views

python 3.3 not showing in /usr/bin

I run linux mint I downloaded python 3.3.1 and ran: ./configure make make test sudo make altinstall However python3.3 did not show up in /usr/bin, but there is a python3.3 folder in ...
3
votes
1answer
206 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 ...
1
vote
2answers
165 views

How to find python installation directory on ubuntu

I have just migrated from Windows environment. I have installed Python 3.2 in a separate directory. How can I get the python installation path on ubuntu shell ? Is there any way I can let shell ...
5
votes
3answers
2k views

Making python 3.3 default python 3 interpreter instead of 3.2

So, to keep it simple. Ubuntu 12.10 has python 3.2 pre installed and it is linked to "python3". I downloaded python 3.3 and it's command is "python3.3". However, I downloaded pySide for python3 from ...
0
votes
1answer
267 views

Python Global Hotkey

I'm looking to create a global hotkey in Python 3.2 for Ubuntu 12.10. That is, my script will run in the background and whenever I press Shift+F4 (for example), no matter what the active window is, ...
5
votes
1answer
309 views

What is python3mu?

I'm setting up PyDev for Eclipse, and I have to choose a version of Python for the interpretor. I want to use Python3, and I've been using python3 as my interpretor, so I thought /usr/bin/python3 ...
4
votes
2answers
637 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 ...
1
vote
1answer
74 views

What is wrong with this python script?

I have this code: from sys import argv import os bold = "\033[1m" reset = "\033[0;0m" try: argv[1] except IndexError: print("\nNo arguments! Add \"-h\" or \"--help\" for more info." + bold + ...
2
votes
0answers
46 views

Install Both Python 2.7 and Python 3.3.0 on Ubuntu 12.04 [duplicate]

Possible Duplicate: need to have 2 versions of python? I have projects that require different resources from the two different versions of Python. My question is can I have both versions of ...
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 ( ...
2
votes
3answers
189 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 ...