程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

no model name “PIL“ and Command “/usr/bin/python3 -u -c “import setuptools, tokenize,錯誤的解決方法

編輯:Python

1. No module named 'PIL’錯誤的解決方法:

 pip3 install Pillow

2.pillow裝包失敗

Command “/usr/bin/python3 -u -c “import setuptools, tokenize;file=‘/tmp/pip-build-mn8o298t/pillow/setup.py’;f=getattr(tokenize, ‘open’, open)(file);code=f.read().replace(‘\r\n’, ‘\n’);f.close();exec(compile(code, file, ‘exec’))” install --record /tmp/pip-pwelxv4x-record/install-record.txt --single-version-externally-managed --compile --user --prefix=” failed with error code 1 in /tmp/pip-build-mn8o298t/pillow/

2.1執行下面的命令,下面的包按需要安裝,一般是缺少libssl-dev

我就是只安裝了libssl-dev這個就可以了:

sudo apt-get install build-essential libssl-dev libffi-dev python-dev python3-dev

2.2原因pip版本過低

python -m pip install --upgrade pip #升級pip包

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved