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

发布于 2024-10-14 03:57:20 字数 466 浏览 1 评论 0原文

因为获取这个简单的信息是一项艰巨的任务,所以我决定将其发布给其他人:

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

     DISPLAY;
    
        <字符串>:0.0
    
        <键>PYTHONPATH
    
        /full/path/ofyour/favorite/script/dir:/full/path/of/another/script/dir:
    

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

Because it was such a mission to get this simple bit of info I've decided to post it for others:

  1. In terminal execute: mkdir ~/.MacOSX
  2. In terminal execute: touch ~/.MacOSX/environment.plist
  3. Browse to the file and open.
  4. Paste:

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

  5. Edit to what you need and save.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

如果没有 2024-10-21 03:57:20

以下是使用 属性列表编辑器 执行此操作的记录方法。

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

Here is the documented way to do it with Property List Editor.

Note that you should use caution when setting environment variables this way as they apply to launched GUI applications which might not be expecting them. For setting default environment variables when working in a terminal shell, the conventional UNIX way of using shell profile commands, like .profile or .bash_profile is preferred and less likely to break things.

离去的眼神 2024-10-21 03:57:20
  1. 在终端中执行:mkdir ~/.MacOSX
  2. 在终端中执行:touch ~/.MacOSX/environment.plist
  3. 浏览到该文件并打开。
  4. 粘贴

<?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>

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

(这是由原始发布者作为问题的一部分编写的。重新发布为社区维基,因为我没有编写它,只是清理了格式。)

  1. In terminal execute: mkdir ~/.MacOSX
  2. In terminal execute: touch ~/.MacOSX/environment.plist
  3. Browse to the file and open.
  4. Paste:

 

<?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>

Edit to what you need and save.

(This was written by the original poster as part of the question. Reposted as community wiki because I didn't write it, just cleaned up the formatting.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文