First, do not mess with the installed Python versions or try to change which Python version is the default interpreter. That will break your system, as core programs of your operating system depend on the certain versions of Python being installed and being the default interpreter. Python 2 isn't compatible with Python 3 in most cases, and even from Python 3.2 to Python 3.3 things can break (another user had that problem recently).
Maya doesn't have Python 3.3. You can add Python 3.2 to your system though, installed alongside Python 2 without causing problems. To do so, install the package libpython3.2 and that will pull in the other needed packages automatically.
Then start any script your want to use Python 3 with:
- Code: Select all
#!/usr/bin/env python3
Or for specifically Python 3.2:
- Code: Select all
#!/usr/bin/env python3.2