Sunday, April 28, 2024
 Popular · Latest · Hot · Upcoming
4
rated 0 times [  4] [ 0]  / answers: 1 / hits: 3279  / 2 Years ago, sun, may 8, 2022, 9:50:04

I'm new to Linux and am trying to set up Python / Django on my machine! I installed Python 3.3 from the source file and it was compiled into /usr/local/bin. Then I created a symbolic link between /usr/bin/python and /usr/local/bin/python3, so that whenever I invoke python from the command line it uses the latest version.



Now I am trying to install MySQL Python and I got the following output:



apt-get install python-mysqldb

Reading package lists... Done
Building dependency tree
Reading state information... Done
python-mysqldb is already the newest version.
The following extra packages will be installed:
apt-listchanges python-apt
Suggested packages:
python-glade2 python-gtk2 python-apt-dbg python-vte python-apt-doc
The following packages will be upgraded:
apt-listchanges python-apt
2 upgraded, 0 newly installed, 0 to remove and 142 not upgraded.
3 not fully installed or removed.
Need to get 0 B/394 kB of archives.
After this operation, 250 kB of additional disk space will be used.
Do you want to continue [Y/n]? Y
Traceback (most recent call last):
File "/usr/bin/apt-listchanges", line 28, in <module>
import apt_pkg
ImportError: No module named 'apt_pkg'


Any ideas on how to fix this? Or any tips on how to clean up this install (if this one is too broken)?


More From » apt

 Answers
7

If you "replace" the default python installation you will probably break the system. There are many system tools that use python2.X and will fail when using python3. In your case, python3 doesn't have the apt_pkg module, so you get that error.



To solve this just remove the symlink created and link it to the default python2.X (in 12.10 it is python2.7):



sudo rm /usr/bin/python
sudo ln -s /usr/bin/python2.7 /usr/bin/python


If you want to make python3 the "default" interpreter i guess the best way without breaking anything is using virtualenv (more info here):



virtualenv -p /usr/bin/python3.3 <destination dir>

[#33809] Monday, May 9, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
motivengry

Total Points: 459
Total Questions: 112
Total Answers: 108

Location: Bonaire
Member since Sat, May 1, 2021
3 Years ago
motivengry questions
Tue, Oct 4, 22, 10:02, 2 Years ago
Wed, May 31, 23, 14:33, 12 Months ago
;