I've installed orange ,when I test in terminal, I can see it run perfectly ,but when I input "import Orange" in jupyter notebook, it turns back “no module named Orange”
Asked
Active
Viewed 603 times
0
-
sounds like a path/environment issue: make sure jupyter knows where to look for the module. – Julien Jan 31 '18 at 04:09
-
2Possible duplicate of [jupyter notebook import error: no module named 'matplotlib'](https://stackoverflow.com/questions/43437884/jupyter-notebook-import-error-no-module-named-matplotlib) – Julien Jan 31 '18 at 04:11
-
you need to install it ? .. go to command promt and type pip install Orange – thomas.mac Jan 31 '18 at 04:15
-
@thomas that doesn't help install it into the Jupyter kernel – OneCricketeer Jan 31 '18 at 04:18
1 Answers
1
In your notebook,
import orange
should be
import Orange

Tom Tang
- 1,064
- 9
- 10
-
-
If you use `Orange.data.Table()` later on, it sure is. This is how Python identifiers and namespaces work. :D – K3---rnc Jan 31 '18 at 10:30
-
@YingyingYu Please have a look at the import statement inside red box in the screenshot posted by you. – Tom Tang Feb 01 '18 at 12:06