質問編集履歴

3

誤記訂正

2020/08/28 02:48

投稿

pokemonta
pokemonta

スコア170

test CHANGED
File without changes
test CHANGED
@@ -100,17 +100,15 @@
100
100
 
101
101
 
102
102
 
103
- 8/28 追加調査
103
+ ーーーーーーーーー8/28 追加調査ーーーーーーーーー
104
104
 
105
- .vscode/setting.jsonのpythonPathの設定がおかしいため
105
+ 【参考サイト】vscode/setting.jsonのpythonPathの設定がおかしいためimportエラー
106
-
107
- importエラー
108
106
 
109
107
  [リンク内容](https://qiita.com/dynamonda/items/5a8129cd6e9cc139d94a)
110
108
 
111
109
 
112
110
 
113
- 問題ないか調査
111
+ 問題ないか追加調査実施。結果は以下の通り
114
112
 
115
113
 
116
114
 
@@ -118,9 +116,7 @@
118
116
 
119
117
  >conda info -e
120
118
 
121
- # conda environments:
122
119
 
123
- #
124
120
 
125
121
  base * C:\Anaconda3
126
122
 

2

追加調査

2020/08/28 02:48

投稿

pokemonta
pokemonta

スコア170

test CHANGED
File without changes
test CHANGED
@@ -97,3 +97,53 @@
97
97
 
98
98
 
99
99
  まったく原因がわかりません。
100
+
101
+
102
+
103
+ 8/28 追加調査
104
+
105
+ .vscode/setting.jsonのpythonPathの設定がおかしいため
106
+
107
+ importエラー
108
+
109
+ [リンク内容](https://qiita.com/dynamonda/items/5a8129cd6e9cc139d94a)
110
+
111
+
112
+
113
+ 問題ないか調査
114
+
115
+
116
+
117
+
118
+
119
+ >conda info -e
120
+
121
+ # conda environments:
122
+
123
+ #
124
+
125
+ base * C:\Anaconda3
126
+
127
+
128
+
129
+ ・ユーザ設定のsetting.json
130
+
131
+ "python.linting.enabled": true,
132
+
133
+ "python.linting.pylintEnabled": true,
134
+
135
+ "python.pythonPath": "C:\Anaconda3\python.exe",
136
+
137
+ "python.condaPath": "C:\Anaconda3\condabin\conda.bat"
138
+
139
+
140
+
141
+ ・ワークスペースのsetting.json
142
+
143
+ "python.pythonPath": "C:\Anaconda3\python.exe",
144
+
145
+ "python.condaPath": "C:\Anaconda3\condabin\conda.bat"
146
+
147
+
148
+
149
+ ちゃんと指定できてそう

1

追加

2020/08/28 02:46

投稿

pokemonta
pokemonta

スコア170

test CHANGED
File without changes
test CHANGED
@@ -72,4 +72,28 @@
72
72
 
73
73
 
74
74
 
75
+ import sys
76
+
77
+ sys.path.append('../hello_world')
78
+
79
+ import app
80
+
81
+
82
+
83
+ 同様のエラー
84
+
85
+
86
+
87
+ import sys
88
+
89
+ sys.path.append('hello_world')
90
+
91
+ import app
92
+
93
+
94
+
95
+ 同様のエラー
96
+
97
+
98
+
75
99
  まったく原因がわかりません。