2
我只是想問你的幫助下面我的問題。 我的代碼工作正常,但使用PyInstaller
轉換爲.exe
後,我會遇到FileNotFoundError: [WinError 2]
。PyAutoGui [WinError 2]將腳本轉換爲使用Pyinstaller的exe後
請建議我如何解決它。
代碼:
import pyautogui, time
try:
while True:
time.sleep(30)
pyautogui.dragRel(1,0)
pyautogui.dragRel(-1,0)
except KeyboardInterrupt:
print('Done')
你是否將它轉換爲一個單一的exe文件或與exe文件和一些文件的文件夾? – linusg
我試過但它不會工作。 – user6819230
繼續首先使用可執行文件進行測試。你有沒有試過https://github.com/pyinstaller/pyinstaller/wiki/If-Things-Go-Wrong和https://github.com/pyinstaller/pyinstaller/wiki/How-to-Report-Bugs#make-sure -everything-被包裝,是否正確? – linusg