G. Nordin
1/9/15
Do some quick checks to make sure we are in the right directory and to determine which python & ipython installations are active and their versions.
In [1]:
# Check that we have navigated to the correct directory.
# The exact path will be different on your computer.
!pwd
In [2]:
# Check which python installation is active
!which python
In [3]:
# Check the python version
!python -V
In [4]:
# Check which ipython installation is active
!which ipython
In [5]:
# Check the ipython version
!ipython -V
In [6]:
!pwd
In [ ]: