我正在尝试遵循:
from bs4 import BeautifulSoup
并得到了错误
Traceback (most recent call last):
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/admin/__init__.py", line 355, in post
exec(compiled_code, globals())
File "<string>", line 1, in <module>
ImportError: No module named bs4
我该如何使用它Google App Engine runtime 2.7
?
更新
我的项目结构看起来像
flask-appengine-template/
docs/
licenses/
src/
application/
static/
templates/
models.py
settings.py
urls.py
views.py
libs/
bs4/
app.yaml
src.py
我从这里使用这个模板
由于app.yaml
is的父级src
,我添加了一个文件src.py
并在那里添加了两行。
我仍然看到同样的错误
ImportError: No module named bs4
但是,我的项目名称app.yaml
是flaskonappengine
请告诉我我仍然做错了什么?