Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 320 Bytes

jupyter-show-current-python-version.md

File metadata and controls

13 lines (10 loc) · 320 Bytes

Show Current Python Version Running Jupyter

Dealing with Python versions is like trying to take a nap in a snake pit. --Anon

Run this in a Jupyter cell and it will tell you chich version of Python that notebook is using.

import sys
print(sys.executable)
print(sys.version)
print(sys.version_info)