mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-30 07:16:23 +02:00
Silly me copying and pasting
This commit is contained in:
parent
62efa7e66c
commit
d619de2ef4
1 changed files with 3 additions and 3 deletions
|
|
@ -19,7 +19,7 @@ print "sys.path:", sys.path
|
|||
try:
|
||||
import numpy
|
||||
print "numpy: %s, %s" % (numpy.__version__, numpy.__file__)
|
||||
except importerror:
|
||||
except ImportError:
|
||||
print "no numpy"
|
||||
try:
|
||||
import matplotlib
|
||||
|
|
@ -29,12 +29,12 @@ except ImportError:
|
|||
try:
|
||||
import ipython
|
||||
print "ipython: %s, %s" % (ipython.__version__, ipython.__file__)
|
||||
except importerror:
|
||||
except ImportError:
|
||||
print "no ipython"
|
||||
try:
|
||||
import sphinx
|
||||
print "sphinx: %s, %s" % (sphinx.__version__, sphinx.__file__)
|
||||
except importerror:
|
||||
except ImportError:
|
||||
print "no sphinx"
|
||||
|
||||
sys.path.insert(0, os.getcwd() + "/..")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue