Knowledge Base

Get Expert Website Hosting

Choose website reliability and expertise with SiteGround!

Home / Hosting Subscription / Supported Technology / How to see available python modules?

How to see available python modules?

Last update: Mar 19, 2025

To see the available python modules you should first access your account via SSH. Then, execute the this command:

python

You will see the following:

username@server:~$ python
Python 3.13.2 (main, Feb  4 2025, 00:00:00) [GCC 14.2.1 20250110 (Red Hat 14.2.1-7)] on linux
Type "help", "copyright", "credits" or "license" for more information.

Then, to see the available modules, type:

help('modules')

which will list all currently available modules.

You can install new modules with the Python PIP package manager. To install a specific module use the following syntax:

pip3 install module-name

and replace module-name with the desired module name.

Share this article