我安装了两个 python 安装。 一个安装在默认位置, 另一个安装在我的主目录中。 我使用主目录 python 安装。 我正面临 pythonpath 问题。 当我在 2nd python 安装 sys. paths 时, 它给了我默认 python 安装库的路径 。
eg. 缩略语
2nd python is installed in /home/python2.6.1
now when i use sys.path
it gives me
/lib/python2.6/lib-old,/lib/python2.6/lib-dynload
等。
代替
/home/python2.6.1/lib/python2.6/lib-old, /home/python2.6.1/lib/python2.6/lib-dynload
如何在主目录中更改 python 安装路径?