win10下python3.8的PIL庫安裝
1.找到Python的位置
我的是在
C:\Users\admin\AppData\Local\Programs\Python\Python38
AppData這個檔案是個隱藏檔案需要查詢得先把隱藏檔案顯示出來
win10裡面在Microsoft store 下載的Python我只找到了exe檔案,所以就解除安裝然後重新下載過。
去官網下載的時候下載速度極其慢,可以去這下:
https://python123.io/download
2.PIL庫的安裝
PIL庫:具有強大的影象處理能力
在上面找到的位置,開啟終端,然後輸入
pip install pillow
然後等待安裝就好了。這裡提供參考程式碼試驗有沒有裝成功。
from PIL import Image,ImageDraw,ImageFont def add_num(img): draw = ImageDraw.Draw(img) myfont = ImageFont.truetype('C:/windows/fonts/Arial.ttf',size=40) fillcolor = "#ff0000" width,height = img.size draw.text((width-40,0),'99',font=myfont,fill=fillcolor) img.save('C:/Users/admin/Desktop/result.jpg','jpeg') return 0 if __name__ == '__main__': image = Image.open('C:/Users/admin/Desktop/image.jpg') add_num(image)
PS:windows下python3.8安裝PIL:python3.8缺少Image庫
python官網:
https://www.python.org/
python3.8執行使用了Image庫的python指令碼
執行.py指令碼,報錯:
Traceback (most recent call last):
File “CutPngToTga.py”,line 32,in
import PIL.Image
ModuleNotFoundError: No module named ‘PIL'
這是因為,安裝的python還沒有包含PIL模組。
python安裝PIL:
進入windows的cmd:
1.更新pip
(1)檢視pip版本
pip --version
(2)更新pip
python -m pip install --upgrade pip
2.安裝python的PIL(python圖形庫)
pip install Pillow
3.python應用匯入PIL
python程式碼中匯入Image庫的一種方式:
import PIL.Image
總結
到此這篇關於win10下python3.8的PIL庫安裝的文章就介紹到這了,更多相關win10 python PIL庫安裝內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!