Running python from AppleScript
I've hit every forum I can think of and tried many things... reaching out in desperation. :)
I have a program in python that pulls data and writes it to CSV file. Works great... from terminal. That is, in terminal I can do:
python3 /Users/me/Desktop/Folder/my_python.py
When trying to run the same via AppleScript:
do shell script "python3 /Users/me/Desktop/Folder/my_python.py"
It errors and regurgitates "OSError: [Errno 30] Read-only file system"
In Automator, similarly, it works with "Run Shell Script" but not "Run AppleScript". Any ideas/suggestions?
Thanks!