ckuo Posted February 5, 2020 Posted February 5, 2020 Hi there, following the post https://www.helionet.org/index/topic/29540-solved-total-beginner-need-help-running-a-python-script/I realized I have no modules python3.7 for my script. What's the process to add the required modules ?I'll be needing the following: from urllib.request import urlopen as uReqfrom bs4 import BeautifulSoup as soupimport csvimport osimport mysql.connectorimport sysimport re Thanks!
Sn1F3rt Posted February 5, 2020 Posted February 5, 2020 Krydos can install them for you. Some of them are already installed, some come packed with Python 3 like os, sys etc. but a few like mysql.connector requires installation. You can check the list of installed modules on Python 3.7 on Tommy here: .heliohost.org/cgi-bin/modules37.pyI didn't note that you're not on Tommy. As flazepe said, refer the link he's given below.
Flaze Posted February 5, 2020 Posted February 5, 2020 This support request is being escalated to our root admin. Since you're on Johnny, you need to refer https://krydos2.heliohost.org/cgi-bin/modules37.py instead.
Krydos Posted February 6, 2020 Posted February 6, 2020 All of those modules are already installed (or default and don't show up on the page.)
Recommended Posts