RuntimeError: NotImplementedError('Unable to find the Python Python Imaging Library. Please view the SDK documentation for details about installing PIL on your system.',).
通過谷歌應用程序引擎日誌我得到這個錯誤。 我試圖上傳圖片。 我已經安裝了PIL,但仍然顯示無法找到。 我已經在PIL無法找到
C:\Python27\Lib\site-packages.
安裝它這是在app.yaml中
application: uniqueappid
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /static
static_dir: static
- url: /.*
script: main.app
libraries:
- name: jinja2
version: latest
- name: PIL
version: 1.1.7
你關注了這一個https://developers.google.com/appengine/docs/python/images/installingPIL? –
雅我做了,但它仍然顯示相同的事情 – user3484417