我对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似乎最初会安装,但是当我发出请求时会引发错误。我也无法导入其他流行的库。任何帮助表示赞赏:)
答案 0 :(得分:0)
您最好提供更多详细信息,例如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。通过添加Beautifulsoup4修改application.py文件,代码如下:
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。通过添加Beautifulsoup4修改requirements.txt:
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
打开网络浏览器,然后导航至http://localhost:5000/上的示例应用程序。
这是为了确保它可以在本地正常运行。
5。然后只需按照article创建部署凭证/资源组/服务计划/ Web应用程序
6。如果没有问题,请在git bash中将代码推送为天蓝色:
git remote add azure <deploymentLocalGitUrl-from-create-step>