国土数値情報を一括DLしようとしたがうまくできん
https://qiita.com/mits003/items/2c8c77514a09aee99cc0
これを参考にした
おそらくpythonで躓いた
■ このスレッドは過去ログ倉庫に格納されています
1デフォルトの名無しさん
2021/11/11(木) 20:20:25.05ID:M474n1nU2デフォルトの名無しさん
2021/11/11(木) 20:22:22.81ID:M474n1nU C:\Users\cucum>python mlit_ksj_dl.py https://nlftp.mlit.go.jp/ksj/gml/datalist/KsjTmplt-L03-a.html
C:\Users\cucum\mlit_ksj_dl.py:50: DeprecationWarning: executable_path has been deprecated, please pass in a Service object
driver = webdriver.Chrome(executable_path=DRIVER_PATH, chrome_options=options)
C:\Users\cucum\mlit_ksj_dl.py:50: DeprecationWarning: use options instead of chrome_options
driver = webdriver.Chrome(executable_path=DRIVER_PATH, chrome_options=options)
Traceback (most recent call last):
File "C:\Users\cucum\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\common\service.py", line 74, in start
self.process = subprocess.Popen(cmd, env=self.env,
File "C:\Users\cucum\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
self._execute_child(args, executable, preexec_fn, close_fds,
File "C:\Users\cucum\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
FileNotFoundError: [WinError 2] 指定されたファイルが見つかりません。
C:\Users\cucum\mlit_ksj_dl.py:50: DeprecationWarning: executable_path has been deprecated, please pass in a Service object
driver = webdriver.Chrome(executable_path=DRIVER_PATH, chrome_options=options)
C:\Users\cucum\mlit_ksj_dl.py:50: DeprecationWarning: use options instead of chrome_options
driver = webdriver.Chrome(executable_path=DRIVER_PATH, chrome_options=options)
Traceback (most recent call last):
File "C:\Users\cucum\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\common\service.py", line 74, in start
self.process = subprocess.Popen(cmd, env=self.env,
File "C:\Users\cucum\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
self._execute_child(args, executable, preexec_fn, close_fds,
File "C:\Users\cucum\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
FileNotFoundError: [WinError 2] 指定されたファイルが見つかりません。
3デフォルトの名無しさん
2021/11/11(木) 20:22:37.48ID:M474n1nU During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\cucum\mlit_ksj_dl.py", line 115, in <module>
dl_dir = file_dl(DRIVER_PATH)
File "C:\Users\cucum\mlit_ksj_dl.py", line 50, in file_dl
driver = webdriver.Chrome(executable_path=DRIVER_PATH, chrome_options=options)
File "C:\Users\cucum\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 69, in __init__
super(WebDriver, self).__init__(DesiredCapabilities.CHROME['browserName'], "goog",
File "C:\Users\cucum\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\chromium\webdriver.py", line 90, in __init__
self.service.start()
File "C:\Users\cucum\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\common\service.py", line 84, in start
raise WebDriverException(
selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://chromedriver.chromium.org/home
Traceback (most recent call last):
File "C:\Users\cucum\mlit_ksj_dl.py", line 115, in <module>
dl_dir = file_dl(DRIVER_PATH)
File "C:\Users\cucum\mlit_ksj_dl.py", line 50, in file_dl
driver = webdriver.Chrome(executable_path=DRIVER_PATH, chrome_options=options)
File "C:\Users\cucum\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 69, in __init__
super(WebDriver, self).__init__(DesiredCapabilities.CHROME['browserName'], "goog",
File "C:\Users\cucum\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\chromium\webdriver.py", line 90, in __init__
self.service.start()
File "C:\Users\cucum\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\common\service.py", line 84, in start
raise WebDriverException(
selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://chromedriver.chromium.org/home
4デフォルトの名無しさん
2021/11/11(木) 20:23:19.70ID:M474n1nU コマンドプロンプトに入力すると↑が出て解説通りにならん
何がダメなのか教えてくださいm(__)m
何がダメなのか教えてくださいm(__)m
5デフォルトの名無しさん
2021/11/11(木) 20:57:16.41ID:M474n1nU C:\Users\cucum>python mlit_ksj_dl.py https://nlftp.mlit.go.jp/ksj/gml/datalist/KsjTmplt-L03-a.html
python: can't open file 'C:\Users\cucum\mlit_ksj_dl.py': [Errno 2] No such file or directory
こっちだった
解説通りにやるとpyファイルにたどり着かないです
python: can't open file 'C:\Users\cucum\mlit_ksj_dl.py': [Errno 2] No such file or directory
こっちだった
解説通りにやるとpyファイルにたどり着かないです
6デフォルトの名無しさん
2021/11/11(木) 22:02:46.50ID:1oMtSCiX pyファイルはどこにあるんだ
7デフォルトの名無しさん
2021/11/11(木) 22:18:32.40ID:M474n1nU8デフォルトの名無しさん
2021/11/11(木) 22:32:09.34ID:1oMtSCiX >>7
じゃあそのフォルダにcdしてからさっきのコマンド実行しないと
じゃあそのフォルダにcdしてからさっきのコマンド実行しないと
9デフォルトの名無しさん
2021/11/11(木) 23:11:27.88ID:M474n1nU10デフォルトの名無しさん
2021/11/11(木) 23:15:32.68ID:M474n1nU Win 10
pyhton 3.9 DL済
ChromeDriver 93.04577 DL済
pip install selenium 実行
コマンドプロンプトでやってる
解説だと「$ python3 mlit_ksj_dl.py ダウンロードしたいページのURL」だけどコマンドプロンプトに入力してもうまくいかないから「python mlit_ksj_dl.py ダウンロードしたいページのURL」にしてる
そうすると>>2,3が表示される
pyhton 3.9 DL済
ChromeDriver 93.04577 DL済
pip install selenium 実行
コマンドプロンプトでやってる
解説だと「$ python3 mlit_ksj_dl.py ダウンロードしたいページのURL」だけどコマンドプロンプトに入力してもうまくいかないから「python mlit_ksj_dl.py ダウンロードしたいページのURL」にしてる
そうすると>>2,3が表示される
11デフォルトの名無しさん
2021/11/11(木) 23:17:45.05ID:M474n1nU フォルダWebDriverには.gitignoreとchromedriver.exeがはいってる
.exeは起動せずにコマンド入力してる
.exeは起動せずにコマンド入力してる
12デフォルトの名無しさん
2021/11/11(木) 23:26:32.96ID:1oMtSCiX >>9
もしC:\Users\cucumにいるまま実行したいなら
python .\mlit-ksj-dl-tool-main\mlit-ksj-dl.py https://〜
だな
あとここだと個別にスレ立てると皆回答してくれないから↓辺りで聞くといいよ
【まず1嫁】くだすれPython(超初心者用) その55
https://mevius.5ch.net/test/read.cgi/tech/1633070807/
もしC:\Users\cucumにいるまま実行したいなら
python .\mlit-ksj-dl-tool-main\mlit-ksj-dl.py https://〜
だな
あとここだと個別にスレ立てると皆回答してくれないから↓辺りで聞くといいよ
【まず1嫁】くだすれPython(超初心者用) その55
https://mevius.5ch.net/test/read.cgi/tech/1633070807/
13デフォルトの名無しさん
2021/11/11(木) 23:47:56.96ID:M474n1nU14デフォルトの名無しさん
2021/11/11(木) 23:59:56.43ID:J6sKotQS スレ削除依頼出せ
2021/11/12(金) 09:14:37.05ID:bLCSn2ms
依頼出しました
16デフォルトの名無しさん
2022/09/07(水) 00:54:37.70ID:6N86wOEk 削除依頼出せ
2022/09/07(水) 01:08:52.50ID:8NMkvrFG
この板では、単発の質問スレを立てることは禁止です!
速やかに、このスレの削除依頼を出してください
速やかに、このスレの削除依頼を出してください
NGNG
真・スレッドストッパー。。。( ̄ー ̄)ニヤリッ
■ このスレッドは過去ログ倉庫に格納されています
ニュース
- 「排外主義が日本全体で跋扈」村井嘉浩宮城県知事−外国ルーツの女子児童へのいじめで [蚤の市★]
- 【テレビ】20代で7割、30代で6割が「見ていない」 衝撃の調査結果から考える「若者のテレビ離れ」本当の理由 [冬月記者★]
- 【サッカーW杯】 観客285万人に到達 1試合平均は6万5000人 過去最多を大幅更新ペース [阿弥陀ヶ峰★]
- クールジャパン機構、累積損失500億円超 政府が廃止など検討へ ★2 [ぐれ★]
- 【アニメ】『日本の最強アニソンBEST100』 1位はまたもや『残酷な天使のテーゼ』… 視聴者は「出来レース」「見飽きた」の声 [冬月記者★]
- AKB48契約解除の花田藍衣、動画で悲痛な訴え「運営から性的な質問をされ…峯岸さんのように坊主にして誠意を見せろと言われ坊主に」★5 [冬月記者★]
- 【悲報】普通の日本人「自動運転バスが全国で不具合ってほんとは中国製なんでしょ」ー>日本資本の企業でした [153736977]
- 「安倍晋三損壊罪」にありがちなこと [163661708]
- 【試される高市】JR北海道「特急列車の自由席廃止したら利用者激減した🥺」 [616817505]
- 【文春】高市、暴かれた本性。木下秘書「文春は中国から毎週一千万円もらっている」自民党内から総スカンなど🤓 [359965264]
- キオクシアさん、一時98000まで上がるも現在87000 [498389267]
- 塩粘の靴ダサくねー?👊😅👊🏡👞