windows下安装Python的IPy模块

来源:互联网 发布:网络图书馆免费 编辑:程序博客网 时间:2024/05/22 10:56

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


1、通过pip来安装IPy模块

C:\Users\Administrator>pip install IPyCollecting IPy  Downloading IPy-0.83.tar.gzInstalling collected packages: IPy  Running setup.py install for IPy ... doneSuccessfully installed IPy-0.83C:\Users\Administrator>


2、验证安装。

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

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

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

记录一下python的:python包列表


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

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


1、通过pip来安装IPy模块

C:\Users\Administrator>pip install IPyCollecting IPy  Downloading IPy-0.83.tar.gzInstalling collected packages: IPy  Running setup.py install for IPy ... doneSuccessfully installed IPy-0.83C:\Users\Administrator>


2、验证安装。

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

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

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

记录一下python的:python包列表

1 0
原创粉丝点击