System Checks

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


/Users/nordin/Documents/BYU/Courses/2015 Winter EE 360/git_stuff/ECEn360_W15

In [2]:
# Check which python installation is active
!which python


/Users/nordin/anaconda/bin/python

In [3]:
# Check the python version
!python -V


Python 2.7.9 :: Anaconda 2.1.0 (x86_64)

In [4]:
# Check which ipython installation is active
!which ipython


/Users/nordin/anaconda/bin/ipython

In [5]:
# Check the ipython version
!ipython -V


2.3.1

In [6]:
!pwd


/Users/nordin/Documents/BYU/Courses/2015 Winter EE 360/git_stuff/ECEn360_W15

In [ ]: