Yingying Yu
Yingying Yu

Reputation: 9

jupyter notebook python on MAC os : “no module named Orange”

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

Upvotes: 0

Views: 649

Answers (1)

Tom Tang
Tom Tang

Reputation: 1144

In your notebook,

import orange 

should be

import Orange

Upvotes: 1

Related Questions