azure - "No module named bs4(BeautifulSoup) Azure"

标签 azure azure-devops azure-web-app-service azure-storage

我对 Azure 还很陌生。我在将 Web 应用程序部署到 azure 时遇到问题。以下是我部署时的日志。

2018-10-09T14:04:05    /home/site/wwwroot
2018-10-09T14:04:05    Found requirements.txt
2018-10-09T14:04:05    Create virtual environment
2018-10-09T14:04:09    Activate virtual environment
2018-10-09T14:04:15    Collecting beautifulsoup4 (from -r requirements.txt (line 1))
2018-10-09T14:04:15      Using cached https://files.pythonhosted.org/packages/21/0a/47fdf541c97fd9b6a610cb5fd518175308a7cc60569962e776ac52420387/beautifulsoup4-4.6.3-py3-none-any.whl
2018-10-09T14:04:15    Collecting PyPDF2 (from -r requirements.txt (line 2))
2018-10-09T14:04:15      Using cached https://files.pythonhosted.org/packages/b4/01/68fcc0d43daf4c6bdbc6b33cc3f77bda531c86b174cac56ef0ffdb96faab/PyPDF2-1.26.0.tar.gz
2018-10-09T14:04:16    Collecting requests (from -r requirements.txt (line 3))
2018-10-09T14:04:17      Using cached https://files.pythonhosted.org/packages/65/47/7e02164a2a3db50ed6d8a6ab1d6d60b69c4c3fdf57a284257925dfc12bda/requests-2.19.1-py2.py3-none-any.whl
2018-10-09T14:04:17    Collecting azure-storage (from -r requirements.txt (line 4))
2018-10-09T14:04:17      Using cached https://files.pythonhosted.org/packages/76/26/482c033f8f3a48d16cf75aad91c3e1256856719f4117fabb4696d33aa5da/azure_storage-0.36.0-py2.py3-none-any.whl
2018-10-09T14:04:17    Collecting json (from -r requirements.txt (line 5))
2018-10-09T14:04:17      Could not find a version that satisfies the requirement json (from -r requirements.txt (line 5)) (from versions: )
2018-10-09T14:04:17    No matching distribution found for json (from -r requirements.txt (line 5))
2018-10-09T14:04:17    You are using pip version 10.0.1, however version 18.1 is available.
2018-10-09T14:04:17    You should consider upgrading via the 'pip install --upgrade pip' command.
2018-10-09T14:04:17    pip install finished
2018-10-09T14:04:17    Finished successfully.
2018-10-09T14:04:18  Running post deployment command(s)...
2018-10-09T14:04:18  Deployment successful.
2018-10-09T14:04:19  App container will begin restart within 10 seconds.

2018-10-09T14:04:31.926761435Z [2018-10-09 14:04:31 +0000] [38] [ERROR] Exception in worker process
2018-10-09T14:04:31.926782635Z Traceback (most recent call last):
2018-10-09T14:04:31.926798836Z   File "/usr/local/lib/python3.7/site-packages/gunicorn/arbiter.py", line 583, in spawn_worker
2018-10-09T14:04:31.926807236Z     worker.init_process()
2018-10-09T14:04:31.926811736Z   File "/usr/local/lib/python3.7/site-packages/gunicorn/workers/base.py", line 129, in init_process
2018-10-09T14:04:31.926816736Z     self.load_wsgi()
2018-10-09T14:04:31.926821037Z   File "/usr/local/lib/python3.7/site-packages/gunicorn/workers/base.py", line 138, in load_wsgi
2018-10-09T14:04:31.926833137Z     self.wsgi = self.app.wsgi()
2018-10-09T14:04:31.926837937Z   File "/usr/local/lib/python3.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
2018-10-09T14:04:31.926842337Z     self.callable = self.load()
2018-10-09T14:04:31.926846537Z   File "/usr/local/lib/python3.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load
2018-10-09T14:04:31.926851038Z     return self.load_wsgiapp()
2018-10-09T14:04:31.926855238Z   File "/usr/local/lib/python3.7/site-packages/gunicorn/app/wsgiapp.py", line 41, in load_wsgiapp
2018-10-09T14:04:31.926859638Z     return util.import_app(self.app_uri)
2018-10-09T14:04:31.926863938Z   File "/usr/local/lib/python3.7/site-packages/gunicorn/util.py", line 350, in import_app
2018-10-09T14:04:31.926868438Z     __import__(module)
2018-10-09T14:04:31.926933340Z   File "/home/site/wwwroot/application.py", line 2, in <module>
2018-10-09T14:04:31.926943041Z     from bs4 import BeautifulSoup
2018-10-09T14:04:31.926947341Z ModuleNotFoundError: No module named 'bs4'

Beautifulsoup 似乎最初已安装,但当我发出请求时,它会抛出错误。我也无法导入其他流行的库。如有任何帮助,我们将不胜感激:)

最佳答案

您最好提供更多详细信息,例如requirements.txt以及您正在使用的操作系统。

我写了一个简单的代码,其中包含Beautifulsoup4(我的环境是Windows 10),并且可以很好地运行。我认为您可以在您身边使用它进行测试,以确保 Beautifulsoup4 是否有效。

大部分步骤都遵循此 article

步骤如下:

1.在 git bash 中: 首先执行git clone https://github.com/Azure-Samples/python-docs-hello-world ,

然后执行cd python-docs-hello-world

2.修改application.py文件,添加Beautifulsoup4,代码如下:

  from flask import Flask
  from bs4 import BeautifulSoup

  app = Flask(__name__)

  @app.route("/")
  def hello():
      soup = BeautifulSoup("<p>it is a bs4 testing</p>")
      return soup.prettify()

3.修改requirements.txt,添加Beautifulsoup4:

click==6.7
Flask==1.0.2
itsdangerous==0.24
Jinja2==2.10
MarkupSafe==1.0
Werkzeug==0.14.1
beautifulsoup4==4.6.3

4.在git bash中,一一执行以下命令:

py -3 -m venv venv
venv/scripts/activate
pip install -r requirements.txt
FLASK_APP=application.py flask run

打开 Web 浏览器,然后导航至示例应用程序 http://localhost:5000/ .

这是为了确保它能够在本地正常运行。

5.然后按照article操作即可创建部署凭据/资源组/服务计划/Web 应用程序

6.如果没有问题,在 git bash 中将代码推送到 azure:

git remote add azure <deploymentLocalGitUrl-from-create-step>

然后git push azure master ,输出如下: enter image description here

7.浏览http://.azurewebsites.net等网站,bs4运行良好: enter image description here

关于azure - "No module named bs4(BeautifulSoup) Azure",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52723209/

相关文章:

Azure 应用服务 - Spring Boot 应用程序在启动时卡住

Azure 网站持续交付

git - “找不到所选帐户的有效 Azure DevOps 团队项目”Azure Synapse GIT 配置

azure - 从 fott microsoft azure 保存项目时出现问题

node.js - 如何在 Team Foundation Server 专用 Macos 代理上设置环境变量?

azure-devops - 如何为存储库的 wiki 创建构建管道?

c# - 如何更新cosmos db中的子文档

Azure SQL 数据库 - Active Directory 集成身份验证

android - 如何使用 azure pipeline 生成 .AAB 文件并签署 Android 应用程序包

azure-web-app-service - 如何获取Azure Web App的错误500的详细信息?