Skip to content

Commit

Permalink
Merge pull request udacity#18 from GageAmes/patch-1
Browse files Browse the repository at this point in the history
Check if scipy is installed in startup.py
  • Loading branch information
ShengKungYi committed Oct 21, 2015
2 parents 81c2205 + ee85027 commit dfa6953
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tools/startup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
except ImportError:
print "you should install numpy before continuing"

print "checking for scipy"
try:
import scipy
except:
print "you should install scipy before continuing"

print "checking for sklearn"
try:
import sklearn
Expand Down

0 comments on commit dfa6953

Please sign in to comment.