Not so long ago I started pip-installing my scripts to keep things tidy. It seems now I can regress back to chaos again...
try: import package except ImportError: import pip print("Installing package...") pip.main(['install', 'package'] import package
Not so long ago I started pip-installing my scripts to keep things tidy. It seems now I can regress back to chaos again...