Skip to content

Instantly share code, notes, and snippets.

@a-recknagel
Created November 14, 2019 08:05
Show Gist options
  • Save a-recknagel/e35176394b36a898a9432d1a6c9ac768 to your computer and use it in GitHub Desktop.
Save a-recknagel/e35176394b36a898a9432d1a6c9ac768 to your computer and use it in GitHub Desktop.
ugly runtime install
try:
import requests
except Exception:
from pip._internal.main import main as pip_main
pip_main(['install', 'requests'])
import requests
print(f"installed requests version {requests.__version__}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment