We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2056481 commit 02eb4abCopy full SHA for 02eb4ab
Orange/__init__.py
@@ -1,6 +1,12 @@
1
# This module is a mixture of imports and code, so we allow import anywhere
2
# pylint: disable=wrong-import-position,wrong-import-order
3
4
+try:
5
+ from Orange.data import _variable
6
+except ImportError:
7
+ raise ImportError("Compiled libraries cannot be found.\n"
8
+ "Try reinstalling the package with: pip install --no-binary Orange3") from None
9
+
10
from Orange import data
11
12
from .misc.lazy_module import _LazyModule
0 commit comments