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.
我想知道是否有一种方法可以安装和使用 BeautifulSoup(或任何 Python 模块),它不是由我的托管服务提供的,没有 root 权限?
您可以在没有 root 权限的情况下安装软件包。
将 pip 与“--user”选项一起使用。然后 pip install package 在你的“~/.local/”文件夹中。
pip install --user some_package
如果您使用 setup.py 或 easy_install,它们也提供类似的功能。(安装在用户文件夹或更改安装根文件夹)