よろしくおねがいします、初めての質問です
いつも動かしているpyautoguiを用いたコードをautomatorのシェルスクリプトを使って実行したいのですが、エラーを吐かれてしまいます
autometor
cd /Users/----/Desktop
/Library/Frameworks/Python.framework/Versions/3.9/bin/python3 sendlist_V5.py
シェル
bin/bash
Which python
/usr/bin/python
発生している問題・エラーメッセージ
アクション“シェルスクリプトを実行”でエラーが起きました: “Traceback (most recent call last):
File "/Users/____/Desktop/test/sendlist.py", line 3, in <module>
import pyautogui
ModuleNotFoundError: No module named 'pyautogui'”
コード
import webbrowser
import pyautogui
import time
〜〜〜
#試したこと
同じディレクトリ内に別の適当なコードを書いて見ると動きました
コード内の問題でしょうか?
ターミナルから起動させると動くのですが…
追記:
python3 -c "import sys; print(sys.executable)"
python3 -c "import sys; print(sys.prefix)"
senglistV5
1import webbrowser 2import pyautogui 3import time 4 5pyautogui.FAILSAFE = True 6 7webbrowser.open("https://google.com") 8 9pyautogui.hotkey("command","Shift","x") 10time.sleep(2)
回答2件
あなたの回答
tips
プレビュー