質問編集履歴
1
エラーメッセージの全文を追加しました.
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,6 +20,42 @@
|
|
20
20
|
|
21
21
|
ImportError: dlopen: cannot load any more object with static TLS
|
22
22
|
|
23
|
+
|
24
|
+
|
25
|
+
During handling of the above exception, another exception occurred:
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
Traceback (most recent call last):
|
30
|
+
|
31
|
+
File "test_single_image.py", line 1, in <module>
|
32
|
+
|
33
|
+
from test_lanenet import *
|
34
|
+
|
35
|
+
File "/home/LaneNet-master/test_lanenet.py", line 29, in <module>
|
36
|
+
|
37
|
+
from lanenet_model import lanenet_cluster
|
38
|
+
|
39
|
+
File "/home/LaneNet-master/lanenet_model/lanenet_cluster.py", line 14, in <module>
|
40
|
+
|
41
|
+
from sklearn.cluster import MeanShift
|
42
|
+
|
43
|
+
File "/home/anaconda3/lib/python3.6/site-packages/sklearn/__init__.py", line 79, in <module>
|
44
|
+
|
45
|
+
from . import __check_build # noqa: F401
|
46
|
+
|
47
|
+
File "/home/anaconda3/lib/python3.6/site-packages/sklearn/__check_build/__init__.py", line 46, in <module>
|
48
|
+
|
49
|
+
raise_build_error(e)
|
50
|
+
|
51
|
+
File "/home/anaconda3/lib/python3.6/site-packages/sklearn/__check_build/__init__.py", line 41, in raise_build_error
|
52
|
+
|
53
|
+
%s""" % (e, local_dir, ''.join(dir_content).strip(), msg))
|
54
|
+
|
55
|
+
ImportError: dlopen: cannot load any more object with static TLS
|
56
|
+
|
57
|
+
|
58
|
+
|
23
59
|
```
|
24
60
|
|
25
61
|
これはどのような意味なのでしょうか?
|