How do I update a Python package?

后端 未结 12 2227
半阙折子戏
半阙折子戏 2020-11-29 15:47

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.

12条回答
  •  执念已碎
    2020-11-29 16:08

    How was the package originally installed? If it was via apt, you could just be able to do apt-get remove python-m2crypto

    If you installed it via easy_install, I'm pretty sure the only way is to just trash the files under lib, shared, etc..

    My recommendation in the future? Use something like pip to install your packages. Furthermore, you could look up into something called virtualenv so your packages are stored on a per-environment basis, rather than solely on root.

    With pip, it's pretty easy:

    pip install m2crypto
    

    But you can also install from git, svn, etc repos with the right address. This is all explained in the pip documentation

提交回复
热议问题