我一直在尝试使用设置脚本以定期运行python程序launchd。python程序失败,因为它找不到我的导入– 我知道这是因为我在日志文件中捕获了错误。为了解决此问题,我创建了~\.MacOSX\environment.plist,然后在其中复制了自己的内容PYTHONPATH,然后注销并再次登录。这似乎不足以解决问题,而且我对尝试其他方法一无所知。
launchd
~\.MacOSX\environment.plist
PYTHONPATH
我正在运行OSX 10.8.3。
更新:
看来我可以运行以下命令:
launchctl setenv PYTHONPATH $PYTHONPATH
脚本将成功执行。因此,修改我的问题:
~\.launchd.conf
\etc\.launchd.conf
要设置特定作业的环境,您应该使用EnvironmentVariables作业定义本身中的键:
EnvironmentVariables
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Label</key> <string>com.example.app</string> <key>Program</key> <string>/path/to/your/script</string> <key>EnvironmentVariables</key> <dict> <key>PYTHONPATH</key> <string>/your/python/path</string> </dict> </dict> </plist>
您可以launchd(8)通过编辑/etc/launchd.conf守护程序或/etc/launchd- user.conf代理来定义服务的默认环境变量。后者有效,但未记录。当前记录的(但不受支持的)每用户配置文件为$HOME/.launchd.conf。
launchd(8)
/etc/launchd.conf
/etc/launchd- user.conf
$HOME/.launchd.conf
这些配置文件包含launchctl(1)子命令列表。您想要的是:
launchctl(1)
setenv PYTHONPATH /your/python/path
更新: /etc/launchd.conf Mac OS X 10.10及更高版本不支持。在这些系统上,您必须基于每个作业定义环境变量。