[Tutor] Modules on Python

Alan Gauld alan.gauld at yahoo.co.uk
Thu Jan 6 19:32:44 EST 2022


On 06/01/2022 18:52, Jose Fonseca Garcia via Tutor wrote:
> Hello,
> 
> We like to know how to update Python Modules on many servers and then those
> modules  to be used for applications.

Which modules do you mean?

Python comes with many modules as part of the standard install.
You update them by updating Python.

In addition there are thousands of third party modules available.
You need to update them from the original source - often PyPi.
PyPi modules can be managed using the pip tool.

If you run Linux you may get them from your package manager.
But you need to know which modules you have and want to update
and to which version you need to update - it depends on the
Python version you are running.

The good news is that usually once you have updated the modules
they will be available for the corresponding version of Python
to use.

-- 
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/
http://www.amazon.com/author/alan_gauld
Follow my photo-blog on Flickr at:
http://www.flickr.com/photos/alangauldphotos




More information about the Tutor mailing list