windows下配置python库
Posted linux_zero
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows下配置python库相关的知识,希望对你有一定的参考价值。
安装easy_install:
下载ez_setup.py文件,命令行执行python ez_setup.py;
将python文件夹下的Scripts文件夹加入大系统path路径;
检查easy_install可以在命令行执行:easy_install --version;
之后安装库则可在命令行执行:easy_install 库名;
安装numpy时,(easy_install numpy),显示错误:
UnicodeEncodeError: ‘ascii‘ codec can‘t encode characters in position 10-11: ordinal not in range(128)
以上是关于windows下配置python库的主要内容,如果未能解决你的问题,请参考以下文章
windows下Python 3.x图形图像处理库PIL的安装