How to use requirements.txt to install all dependencies in a python project

后端 未结 5 1065
滥情空心
滥情空心 2020-12-02 08:46

I am new to python. Recently I got a project written by python and it requires some installation. I run below command to install but got an error.

# pip inst         


        
5条回答
  •  佛祖请我去吃肉
    2020-12-02 09:16

    (Taken from my comment)

    pip won't handle system level dependencies. You'll have to apt-get install libfreetype6-dev before continuing. (It even says so right in your output. Try skimming over it for such errors next time, usually build outputs are very detailed)

提交回复
热议问题