This script will try to import Python packages from a list.
If these packages are not installed then will be installed on system.
import sys
import subprocess
if __name__ == '__main__':
def ModuleInstall(package_name):
try:
subprocess.check_call(['python3', '-m', 'pip3', 'install', package_name, "--user"])
except:
subprocess.check_call(['python', '-m'
↧