Skip to content

Commit

Permalink
Update debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
rw1nkler committed Dec 1, 2020
1 parent 78f65ed commit 7848dd5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source/conf.py
Expand Up @@ -320,8 +320,9 @@ def print_stats():
print("##################################################################")
out = subprocess.check_output("which conda", shell=True)
print("which conda: {}".format(out))
out = subprocess.check_output("conda list", shell=True)
print("conda list:\n {}".format(out))
print("conda list:")
out = subprocess.run("conda list", stdout=sys.stdout, stderr=sys.stderr, shell=True)

out = subprocess.check_output("which python3", shell=True)
print("which python3: {}".format(out))
out = subprocess.check_output("which python", shell=True)
Expand All @@ -330,9 +331,8 @@ def print_stats():
print("which pip3: {}".format(out))
out = subprocess.check_output("which pip", shell=True)
print("which pip: {}".format(out))
out = subprocess.check_output("pip3 list", shell=True)
print("pip3 list:\n {}".format(out))
out = subprocess.check_output("which conda", shell=True)
print("pip3 list:")
out = subprocess.run("pip3 list", stdout=sys.stdout, stderr=sys.stderr, shell=True)
print("##################################################################")

print_stats()
Expand Down

0 comments on commit 7848dd5

Please sign in to comment.