windows下安装Python的IPy模块

有了上次安装失败的经验后,这次安装就顺利多了。

学习Python从安装各种模块开始大笑


1、通过pip来安装IPy模块

C:\Users\Administrator>pip install IPy
Collecting IPy
  Downloading IPy-0.83.tar.gz
Installing collected packages: IPy
  Running setup.py install for IPy ... done
Successfully installed IPy-0.83

C:\Users\Administrator>


2、验证安装。

一开始我以为在引用模块的时候是小写,但是报错了。

于是改成IPy之后,就好了,这再次说明字符的大小写很重要,要仔细一些,不要写错了。

C:\Users\Administrator>python
Python 2.7.11 (v2.7.11:6d1b6a68f775, Dec  5 2015, 20:40:30) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import ipy
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named ipy
>>> import IPy
>>>

你可能感兴趣的:(windows下安装Python的IPy模块)