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 7727809Copy full SHA for 7727809
Orange/__init__.py
@@ -1,6 +1,13 @@
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:\n"
9
+ "pip install --no-binary Orange3") from None
10
+
11
from Orange import data
12
13
from .misc.lazy_module import _LazyModule
0 commit comments