在mac上设置环境变量(特别是PYTHON PATH)

时间:2011-01-21 10:29:55

标签: macos variables path environment pythonpath

因为获取这些简单的信息是我的决定,所以我决定将其发布给其他人:

  1. 在终端执行:mkdir~ / .MacOSX
  2. 在终端执行:touch~ / .MacOSX / environment.plist
  3. 浏览到该文件并打开。
  4. 粘贴:

        <key>DISPLAY</key>
    
        <string>:0.0</string>
    
        <key>PYTHONPATH</key>
    
        <string>/full/path/ofyour/favorite/script/dir:/full/path/of/another/script/dir:
    

  5. 根据需要编辑并保存。

2 个答案:

答案 0 :(得分:2)

以下是使用Property List Editor进行记录的方法。

请注意,在以这种方式设置环境变量时应谨慎,因为它们适用于可能不期望它们的已启动的GUI应用程序。要在终端shell中工作时设置默认环境变量,首选的使用shell配置文件命令的UNIX方式(如.profile.bash_profile)是首选,并且不太可能破坏。

答案 1 :(得分:1)

  1. 在终端执行:mkdir ~/.MacOSX
  2. 在终端执行:touch ~/.MacOSX/environment.plist
  3. 浏览到该文件并打开。
  4. 粘贴:
  5. <?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>
    

    编辑您需要的内容并保存。

    (这是由原始海报写的问题的一部分。转发为社区维基,因为我没有写,只是清理了格式。)