Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经下载了一个包,需要按照文档中的说明“将其添加到 PYTHONPATH”。我该怎么做?
如果这很重要,我正在使用 Visual Studio for python。
在python中你可以这样做:
import sys sys.path.append("yourpath to package")
从python内部。或者您可以在右键单击“计算机”并选择属性后在 Windows 中设置环境变量。
在 python 中也很容易安装使用 'pip' 打包。