在 azure app 服务上运行 python dlib 库

Run python dlib library on azure app service(在 azure app 服务上运行 python dlib 库)
本文介绍了在 azure app 服务上运行 python dlib 库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经为 Python 3.4 创建了一个 azure 应用服务,并使用此

I have created an azure app service for Python 3.4 and installed pip there using this https://bootstrap.pypa.io/get-pip.py script. Everything works fine except when I try to execute pip install dlib library the exception occurs: RuntimeError: CMake must be installed to build the following extensions: dlib

Is there a way to install Cmake at the machine running this app service?

解决方案

Here is the solution that worked for me:

Step 0. Create the Flask application in the app.py file for example like this:

from flask import Flask
import dlib
app = Flask(__name__)

@app.route('/')
def hello_world():
    return 'This server is running dlib version: {}'.format(dlib.__version__)

if __name__ == '__main__':
    app.run(debug=True,host='0.0.0.0')

Step 1. Build a Docker file in the same folder with Python, cmake and dlib (I opted for Python 3). Here is the Dockerfile for this:

FROM ubuntu:latest
MAINTAINER Ilya Pukhov "ilya.pukhov@gmail.com"
RUN apt-get update -y
RUN apt-get install -y python3-pip 
    python3-dev 
    build-essential 
    cmake
COPY . /app
WORKDIR /app
RUN pip3 install flask
RUN pip3 install dlib
ENTRYPOINT ["python3"]
CMD ["app.py"]

Here is the readymade file at the Docker Hub https://hub.docker.com/r/garinthengineer/dlib-test-2/

Step 2. Create the Web app on Linux in azure, ensure that the WEBSITES_PORT variable is set to the port number on which your Flask server is listening (by default is 5000) and connect the docker file to it. You may use the Docker Hub link from the previous point. Here is a tutorial for that step https://docs.microsoft.com/en-us/azure/app-service/containers/tutorial-custom-docker-image#change-web-app-and-redeploy

Profit.

这篇关于在 azure app 服务上运行 python dlib 库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)