How to see available python modules?
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.7.9 (default, Aug 19 2020, 17:05:11)
[GCC 9.3.1 20200408 (Red Hat 9.3.1-2)] 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. On SiteGround’s servers, you can use different Python versions – 2.7 and 3.7. To use version 2.7, use the following:
python2.7
For python 3.7, use:
python3.7