• <tfoot id='9KlLI'></tfoot>
  • <legend id='9KlLI'><style id='9KlLI'><dir id='9KlLI'><q id='9KlLI'></q></dir></style></legend>

      <small id='9KlLI'></small><noframes id='9KlLI'>

      <i id='9KlLI'><tr id='9KlLI'><dt id='9KlLI'><q id='9KlLI'><span id='9KlLI'><b id='9KlLI'><form id='9KlLI'><ins id='9KlLI'></ins><ul id='9KlLI'></ul><sub id='9KlLI'></sub></form><legend id='9KlLI'></legend><bdo id='9KlLI'><pre id='9KlLI'><center id='9KlLI'></center></pre></bdo></b><th id='9KlLI'></th></span></q></dt></tr></i><div id='9KlLI'><tfoot id='9KlLI'></tfoot><dl id='9KlLI'><fieldset id='9KlLI'></fieldset></dl></div>

          <bdo id='9KlLI'></bdo><ul id='9KlLI'></ul>

        更改当前进程环境的 LD_LIBRARY_PATH

        Change current process environment#39;s LD_LIBRARY_PATH(更改当前进程环境的 LD_LIBRARY_PATH)
          <bdo id='mNICb'></bdo><ul id='mNICb'></ul>

            1. <tfoot id='mNICb'></tfoot>
              1. <small id='mNICb'></small><noframes id='mNICb'>

                • <i id='mNICb'><tr id='mNICb'><dt id='mNICb'><q id='mNICb'><span id='mNICb'><b id='mNICb'><form id='mNICb'><ins id='mNICb'></ins><ul id='mNICb'></ul><sub id='mNICb'></sub></form><legend id='mNICb'></legend><bdo id='mNICb'><pre id='mNICb'><center id='mNICb'></center></pre></bdo></b><th id='mNICb'></th></span></q></dt></tr></i><div id='mNICb'><tfoot id='mNICb'></tfoot><dl id='mNICb'><fieldset id='mNICb'></fieldset></dl></div>
                  <legend id='mNICb'><style id='mNICb'><dir id='mNICb'><q id='mNICb'></q></dir></style></legend>

                    <tbody id='mNICb'></tbody>
                  本文介绍了更改当前进程环境的 LD_LIBRARY_PATH的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  是否可以更改当前进程的环境变量?

                  Is it possible to change environment variables of current process?

                  更具体地说,在 python 脚本中,我想更改 LD_LIBRARY_PATH 以便在导入依赖于某些 xyz.soxyz 的模块x"时.so 取自我在 LD_LIBRARY_PATH 中的给定路径

                  More specifically in a python script I want to change LD_LIBRARY_PATH so that on import of a module 'x' which depends on some xyz.so, xyz.so is taken from my given path in LD_LIBRARY_PATH

                  还有其他方法可以动态更改加载库的路径吗?

                  is there any other way to dynamically change path from where library is loaded?

                  编辑:我想我需要提到我已经尝试过类似的东西os.environ["LD_LIBRARY_PATH"] = mypathos.putenv('LD_LIBRARY_PATH', mypath)

                  Edit: I think I need to mention that I have already tried thing like os.environ["LD_LIBRARY_PATH"] = mypath os.putenv('LD_LIBRARY_PATH', mypath)

                  但是这些修改了环境.对于生成的子进程,而不是当前进程,并且模块加载不考虑新的 LD_LIBRARY_PATH

                  but these modify the env. for spawned sub-process, not the current process, and module loading doesn't consider the new LD_LIBRARY_PATH

                  Edit2,所以问题是我们可以改变环境或其他东西,以便库加载器看到它并从那里加载吗?

                  Edit2, so question is can we change environment or something so the library loader sees it and loads from there?

                  推荐答案

                  原因

                  os.environ["LD_LIBRARY_PATH"] = ...
                  

                  不起作用很简单:这个环境变量控制动态加载器的行为(Linux 上的ld-linux.so.2ld.so.1Solaris),但加载程序仅在进程启动时查看一次 LD_LIBRARY_PATH.在当前进程之后更改 LD_LIBRARY_PATH 的值没有效果(就像 这个问题说).

                  doesn't work is simple: this environment variable controls behavior of the dynamic loader (ld-linux.so.2 on Linux, ld.so.1 on Solaris), but the loader only looks at LD_LIBRARY_PATH once at process startup. Changing the value of LD_LIBRARY_PATH in the current process after that point has no effect (just as the answer to this question says).

                  您确实有一些选择:

                  You do have some options:

                  A.如果你知道你将需要 /some/path 中的 xyz.so,并从一开始就控制 python 脚本的执行,那么只需设置 LD_LIBRARY_PATH 根据自己的喜好(在检查它是否尚未设置后),然后重新执行自己.这就是 Java 所做的.

                  A. If you know that you are going to need xyz.so from /some/path, and control the execution of python script from the start, then simply set LD_LIBRARY_PATH to your liking (after checking that it is not already so set), and re-execute yourself. This is what Java does.

                  B.您可以通过其绝对路径导入x.so之前导入/some/path/xyz.so.当你再导入 x.so 时,加载器会发现它已经加载了 xyz.so,并且会使用已经加载的模块而不是再次搜索它.

                  B. You can import /some/path/xyz.so via its absolute path before importing x.so. When you then import x.so, the loader will discover that it has already loaded xyz.so, and will use the already loaded module instead of searching for it again.

                  C.如果你自己构建x.so,你可以在其链接行添加-Wl,-rpath=/some/path,然后导入x.so 将导致加载器在 /some/path 中查找依赖模块.

                  C. If you build x.so yourself, you can add -Wl,-rpath=/some/path to its link line, and then importing x.so will cause the loader to look for dependent modules in /some/path.

                  这篇关于更改当前进程环境的 LD_LIBRARY_PATH的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  env: python: No such file or directory(env: python: 没有这样的文件或目录)
                  How to evaluate environment variables into a string in Python?(如何在 Python 中将环境变量评估为字符串?)
                  Python - temporarily modify the current process#39;s environment(Python - 临时修改当前进程的环境)
                  Reading and writing environment variables in Python?(在 Python 中读写环境变量?)
                  When to use sys.path.append and when modifying %PYTHONPATH% is enough(何时使用 sys.path.append 以及何时修改 %PYTHONPATH% 就足够了)
                  Why can#39;t environmental variables set in python persist?(为什么python中设置的环境变量不能持久化?)
                    • <i id='t4qlo'><tr id='t4qlo'><dt id='t4qlo'><q id='t4qlo'><span id='t4qlo'><b id='t4qlo'><form id='t4qlo'><ins id='t4qlo'></ins><ul id='t4qlo'></ul><sub id='t4qlo'></sub></form><legend id='t4qlo'></legend><bdo id='t4qlo'><pre id='t4qlo'><center id='t4qlo'></center></pre></bdo></b><th id='t4qlo'></th></span></q></dt></tr></i><div id='t4qlo'><tfoot id='t4qlo'></tfoot><dl id='t4qlo'><fieldset id='t4qlo'></fieldset></dl></div>
                        <tbody id='t4qlo'></tbody>

                        <bdo id='t4qlo'></bdo><ul id='t4qlo'></ul>
                      • <legend id='t4qlo'><style id='t4qlo'><dir id='t4qlo'><q id='t4qlo'></q></dir></style></legend><tfoot id='t4qlo'></tfoot>

                          <small id='t4qlo'></small><noframes id='t4qlo'>