Commit 8b363fff authored by Adam Blank's avatar Adam Blank
Browse files

Update transfer.py

parent afdb8632
No related merge requests found
Showing with 8 additions and 0 deletions
+8 -0
......@@ -8,6 +8,14 @@ import psutil
import urllib.request
import ssl
from pathlib import Path
import sys
try:
import psutil
except ImportError:
subprocess.check_call([sys.executable, "-m", "pip", "install", 'psutil'])
finally:
import psutil
ssl._create_default_https_context = ssl._create_unverified_context
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment