我運行此代碼 from PIL import Image
import numpy as np
im = Image.open("/Users/Hugo/green_leaves.jpg")
im.load()
height, widht = im.size
p = np.array([0,0,0])
for row in range(height):
for col in
我想在Django中使用ImageField,並且我被告知要安裝Pillow而不是PIL。我裝枕頭做這個 pip install Pillow
,然後當我跑的服務器,它說 To use ImageFields, you need to install PIL
,但有人告訴我,它應該只是有枕頭工作。我做了進一步的研究,我讀到我應該嘗試 pip install Pillow-PIL
我試過