環境:Windows10 :Anaconda(3)
pythonのファイルをPyInstallerでexe化しましたが、エラーが出ました。
(practice) C:\Users\genki\Downloads>C:\Users\genki\Downloads\dist\test05.exe Traceback (most recent call last): File "test05.py", line 13, in <module> get_ipython().system('pip3 install webdriver_manager') NameError: name 'get_ipython' is not defined [14540] Failed to execute script test05
で、”PyInstallerで作成した実行可能ファイル(.exe)が動かないときの調査方法”サイトを参照して調査しました。
(practice) C:\Users\genki\Downloads>pyinstaller myprogram.py --onefile --debug all 109 INFO: PyInstaller: 3.6 109 INFO: Python: 3.9.7 (conda) 140 INFO: Platform: Windows-10-10.0.19043-SP0 140 INFO: wrote C:\Users\genki\Downloads\myprogram.spec 140 INFO: UPX is not available. Traceback (most recent call last): File "C:\Users\genki\anaconda3\envs\practice\Scripts\pyinstaller-script.py", line 10, in <module> sys.exit(run()) File "C:\Users\genki\anaconda3\envs\practice\lib\site-packages\PyInstaller\__main__.py", line 114, in run run_build(pyi_config, spec_file, **vars(args)) File "C:\Users\genki\anaconda3\envs\practice\lib\site-packages\PyInstaller\__main__.py", line 65, in run_build PyInstaller.building.build_main.main(pyi_config, spec_file, **kwargs) File "C:\Users\genki\anaconda3\envs\practice\lib\site-packages\PyInstaller\building\build_main.py", line 734, in main build(specfile, kw.get('distpath'), kw.get('workpath'), kw.get('clean_build')) File "C:\Users\genki\anaconda3\envs\practice\lib\site-packages\PyInstaller\building\build_main.py", line 681, in build exec(code, spec_namespace) File "C:\Users\genki\Downloads\myprogram.spec", line 6, in <module> a = Analysis(['myprogram.py'], File "C:\Users\genki\anaconda3\envs\practice\lib\site-packages\PyInstaller\building\build_main.py", line 191, in __init__ raise ValueError("script '%s' not found" % script) ValueError: script 'C:\Users\genki\Downloads\myprogram.py' not found
で、以下のエラー文を検索して解決の手がかりを得ようとしましたが…。
raise ValueError("script '%s' not found" % script) ValueError: script 'C:\Users\genki\Downloads\myprogram.py' not foundとの一致はありません。
ご教授、宜しくお願いします。
下記に参照したサイトのURLとexe化した.pyファイルを添付します。
▲参照したサイト
https://qiita.com/q_masa/items/93872744f63ed97a54d8
.pyファイル
#!/usr/bin/env python # coding: utf-8 # In[1]: #!pip3 install -U selenium # In[1]: get_ipython().system('pip3 install webdriver_manager') # In[2]: from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager # In[3]: driver = webdriver.Chrome(ChromeDriverManager().install()) driver.get('https://scraping-for-beginner.herokuapp.com/login_page') # In[4]: elem_username = driver.find_element_by_id('username') elem_username.send_keys('imanishi') # In[1]: # In[ ]:
あなたの回答
tips
プレビュー