因为获取这些简单的信息是我的决定,所以我决定将其发布给其他人:
粘贴:
<key>DISPLAY</key>
<string>:0.0</string>
<key>PYTHONPATH</key>
<string>/full/path/ofyour/favorite/script/dir:/full/path/of/another/script/dir:
根据需要编辑并保存。
答案 0 :(得分:2)
以下是使用Property List Editor进行记录的方法。
请注意,在以这种方式设置环境变量时应谨慎,因为它们适用于可能不期望它们的已启动的GUI应用程序。要在终端shell中工作时设置默认环境变量,首选的使用shell配置文件命令的UNIX方式(如.profile
或.bash_profile
)是首选,并且不太可能破坏。
答案 1 :(得分:1)
mkdir ~/.MacOSX
touch ~/.MacOSX/environment.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>DISPLAY</key>
<string>:0.0</string>
<key>PYTHONPATH</key>
<string>/full/path/ofyour/favorite/script/dir:/full/path/of/another/script/dir:</string>
</dict>
</plist>
编辑您需要的内容并保存。
(这是由原始海报写的问题的一部分。转发为社区维基,因为我没有写,只是清理了格式。)