Hello,
I am trying to make an auto python3 import loader. It is getting biger by the moment.
I am batch loading them.
I have it running through a system(“sudo apt-get install %s” % X) if it did not find “X” then it look for it in system(‘pip3 install %s’ % X).
The next step is to manually install it.
Let’s say that I was looking for PyPipboyApp.
It on github.
This particular program is not out of alpha at this point.
Is there a way for python3 to “look” through ghihub for https://github.com/matzman666/PyPipboyApp?
Then give a return that can be used in
chdir(myhome)
system(‘sudo wgit clone https://github.com/matzman666/PyPipboyApp’)
chdir(X)
system(‘make’)
system(‘sudo make install’)
Klint
PS. PyPipboyApp is just an example.