How to update the library? I want to update one of the Python libraries. How to do it? I have python-lib_a_1.3 , and I want python-lib_a_1.9 .
4 answers
Or so
pip install -U libname or even so
easy_install -U libname |
It all depends on the distribution, look at which package this library is in and update it via the package management system (or ebuilds) .easy_install is an extremely bad way, then you can clean up if something goes wrong ... because there is no easy_uninstall.
|
sudo apt-get install python-lib-a-1.9 maybe so..
|
Everything written above is correct, but it is better to use the synaptic in the search engine to write piton. And a list of everything connected with it will appear, it will only be necessary to tick the selected packages, all dependencies will be installed automatically or packages for installing dependencies will be offered
|