Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (47.6k points)

I'm running Ubuntu 9:10 and a package called M2Crypto is installed (version is 0.19.1). I need to download, build and install the latest version of the M2Crypto package (0.20.2).

The 0.19.1 package has files in a number of locations including (/usr/share/pyshared and /usr/lib/pymodules.python2.6).

How can I completely uninstall version 0.19.1 from my system before installing 0.20.2?

1 Answer

0 votes
by (106k points)

The best way to update package in Python is to run this command from the terminal

sudo pip install [package_name] --upgrade

sudo will ask to enter your root password to confirm the action.

Related questions

0 votes
2 answers
0 votes
2 answers
0 votes
1 answer

Browse Categories

...