2017-03-22 82 views
1

pip3無法安裝Image模塊,因此,我跟着一個替代過程,但隨後Python不能導入模塊。這是我做了什麼:Python 3裏不能只導入模塊安裝在Windows上

C:\Users\myuser>pip3 install --user Image 
Fatal error in launcher: Unable to create process using '"' 

C:\Users\myuser>python3 
Python 3.6.0 (v3.6.0:41df79263a11, Dec 23 2016, 08:06:12) [MSC v.1900 64 bit (AMD64)] on win32 
Type "help", "copyright", "credits" or "license" for more information. 
>>> import pip 
>>> pip.main(['install','--user','Image']) 
Collecting Image 
    Using cached image-1.5.5.tar.gz 
Collecting pillow (from Image) 
    Downloading Pillow-4.0.0-cp36-cp36m-win_amd64.whl (1.5MB) 
    100% |████████████████████████████████| 1.5MB 323kB/s 
Collecting django (from Image) 
    Using cached Django-1.10.6-py2.py3-none-any.whl 
Collecting olefile (from pillow->Image) 
    Using cached olefile-0.44.zip 
Installing collected packages: olefile, pillow, django, Image 
    Running setup.py install for olefile ... done 
    Running setup.py install for Image ... done 
Successfully installed Image-1.5.5 django-1.10.6 olefile-0.44 pillow-4.0.0 
0 
>>> import Image 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
ModuleNotFoundError: No module named 'Image' 
>>> 

回答

1

嘗試

import image 

代替。

的這裏的問題是,包的名稱並不總是與名字它的進口在Python相應。

+0

你可以在命令行中使用'PIP list'看到什麼是真正安裝。 – Feishi