質問編集履歴
1
ディレクトリの構成を追加しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -151,4 +151,56 @@
|
|
151
151
|
'lib',
|
152
152
|
'.\lib']
|
153
153
|
```
|
154
|
-
※pyinstaller側は圧倒的にpathが不足している
|
154
|
+
※pyinstaller側は圧倒的にpathが不足している
|
155
|
+
### 補足情報
|
156
|
+
プロジェクトの構成は以下のようになっています
|
157
|
+
```
|
158
|
+
├─.vscode #VSCodeのデバッグ用設定とかが入っている
|
159
|
+
├─build #pyinstaller 実行時のビルド
|
160
|
+
├─dist #pyinstaller 実行時の実行ファイル格納場所
|
161
|
+
└─lib #pipで入手したgoogle-cloud-translateクライアントライブラリ格納場所(作った)
|
162
|
+
├─bin
|
163
|
+
├─cachetools
|
164
|
+
├─cachetools-3.1.1.dist-info
|
165
|
+
├─certifi
|
166
|
+
├─certifi-2019.6.16.dist-info
|
167
|
+
├─chardet
|
168
|
+
├─chardet-3.0.4.dist-info
|
169
|
+
├─google
|
170
|
+
│ ├─auth
|
171
|
+
│ ├─cloud
|
172
|
+
│ │ ├─translate_v2
|
173
|
+
│ │ └─translate_v3beta1
|
174
|
+
│ ├─logging
|
175
|
+
│ ├─longrunning
|
176
|
+
│ ├─oauth2
|
177
|
+
│ ├─protobuf
|
178
|
+
│ ├─rpc
|
179
|
+
│ └─type
|
180
|
+
├─googleapis_common_protos-1.6.0-py3.7.egg-info
|
181
|
+
├─google_api_core-1.14.0.dist-info
|
182
|
+
├─google_auth-1.6.3.dist-info
|
183
|
+
├─google_cloud_core-1.0.2.dist-info
|
184
|
+
├─google_cloud_translate-1.6.0.dist-info
|
185
|
+
├─grpc
|
186
|
+
├─grpcio-1.22.0.dist-info
|
187
|
+
├─idna
|
188
|
+
├─idna-2.8.dist-info
|
189
|
+
├─pkg_resources
|
190
|
+
├─protobuf-3.9.0.dist-info
|
191
|
+
├─pyasn1
|
192
|
+
├─pyasn1-0.4.5.dist-info
|
193
|
+
├─pyasn1_modules
|
194
|
+
├─pyasn1_modules-0.2.5.dist-info
|
195
|
+
├─pytz
|
196
|
+
├─pytz-2019.1.dist-info
|
197
|
+
├─requests
|
198
|
+
├─requests-2.22.0.dist-info
|
199
|
+
├─rsa
|
200
|
+
├─rsa-4.0.dist-info
|
201
|
+
├─setuptools
|
202
|
+
├─setuptools-41.0.1.dist-info
|
203
|
+
├─six-1.12.0.dist-info
|
204
|
+
├─urllib3
|
205
|
+
└─urllib3-1.25.3.dist-info
|
206
|
+
```
|