質問編集履歴

1

修正

2018/07/24 10:50

投稿

yokookentarou
yokookentarou

スコア11

test CHANGED
File without changes
test CHANGED
@@ -59,3 +59,53 @@
59
59
  上記のエラーが出てしまうのですが、どのようにすれば改善できるのでしょうか?
60
60
 
61
61
  よろしくお願いします。
62
+
63
+
64
+
65
+ ・環境構築に関しては、ネットからanacondaをインストールしました。
66
+
67
+ 今回githubで参考にしているのですがその途中でエラーが出てしまいました。
68
+
69
+ 参考URLはこちらになります
70
+
71
+ https://github.com/sekilab/RoadDamageDetector/blob/master/RoadDamageDatasetTutorial.ipynb
72
+
73
+
74
+
75
+ ・ターミナルでpip show matplotlibと実行した結果
76
+
77
+ ```Name: matplotlib
78
+
79
+ Version: 2.2.2
80
+
81
+ Summary: Python plotting package
82
+
83
+ Home-page: http://matplotlib.org
84
+
85
+ Author: John D. Hunter, Michael Droettboom
86
+
87
+ Author-email: matplotlib-users@python.org
88
+
89
+ License: BSD
90
+
91
+ Location: /anaconda3/lib/python3.6/site-packages
92
+
93
+ Requires: numpy, cycler, pyparsing, python-dateutil, pytz, six, kiwisolver
94
+
95
+ Required-by: seaborn, scikit-image
96
+
97
+ コード
98
+
99
+ ```
100
+
101
+ ・jupyter notebook上でimport sys;print(sys.version);print(sys.path)と実行した結果
102
+
103
+ ```3.6.6 |Anaconda, Inc.| (default, Jun 28 2018, 11:07:29)
104
+
105
+ [GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)]
106
+
107
+ ['', '/anaconda3/envs/TensorFlow2/lib/python36.zip', '/anaconda3/envs/TensorFlow2/lib/python3.6', '/anaconda3/envs/TensorFlow2/lib/python3.6/lib-dynload', '/anaconda3/envs/TensorFlow2/lib/python3.6/site-packages', '/anaconda3/envs/TensorFlow2/lib/python3.6/site-packages/IPython/extensions', '/Users/yokookentarou/.ipython']
108
+
109
+ コード
110
+
111
+ ```