Files
KOTIKOTappsLegacy/LauncherInstaller/Install-KOTIKOT_launcher.py
BarsTiger dc419498c4 1
2021-06-01 14:31:47 +03:00

12 lines
418 B
Python

import urllib.request, os, subprocess, sys
launchfolder = os.getcwd()
kkapps = launchfolder + "/KOTIKOT apps"
if not os.path.exists(kkapps):
os.mkdir(kkapps)
launcherurl = 'https://raw.githubusercontent.com/BarsTiger/KOTIKOTapps_download_repo/master/KOTIKOT_launcher.py'
urllib.request.urlretrieve(launcherurl, kkapps + "/KOTIKOT_launcher.py")
subprocess.check_call([sys.executable, "-m", "pip install PyQt5"])