我正在尝试在namecheap共享主机帐户上运行脚本,但他们不允许PIP,因此我无法使用它将BS安装到服务器中。
我有一个python脚本Link to GitHub,我需要在namecheap服务器上运行。
我不知道如何在python中编码,所以我如何导入BS而不使用导致错误的单词import bs4 from beautifulsoup
。
也许我可以下载整个BS库并上传到服务器上的文件夹?像这样的东西? 请帮忙。
答案 0 :(得分:1)
您可以将bs4路径直接附加到脚本中的sys.path,然后您可以直接使用它而无需导入。像这样的东西
import sys
sys.path.append("/path/to/bs4/beautifulsoup")
beautifulsoup("something")#now you can use it directly