0

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”

enter image description here

enter image description here

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
  • sounds like a path/environment issue: make sure jupyter knows where to look for the module. – Julien Jan 31 '18 at 04:09
  • 2
    Possible 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 Answers1

1

In your notebook,

import orange 

should be

import Orange
Tom Tang
  • 1,064
  • 9
  • 10