【python】‘图片转字符画’实验,安装pip中的Pillow

在Python3.X中
在命令行使用PIP安装:
pip install Pillow (尝试可行)


【python】‘图片转字符画’实验,安装pip中的Pillow_第1张图片
Paste_Image.png

或在命令行使用easy_install安装:
easy_install Pillow (未尝试)

Python2.7安装pip
1.在安装python的路径下的scripts文件中默认安装好了easy_install工具,利用这个工具。


【python】‘图片转字符画’实验,安装pip中的Pillow_第2张图片
anzhangPIP.gif

2.复制好easy_install工具的路径,然后打开cmd,输入以下代码:

【python】‘图片转字符画’实验,安装pip中的Pillow_第3张图片
Paste_Image.png

3.pip安装成功后,在cmd下执行pip.

【python】‘图片转字符画’实验,安装pip中的Pillow_第4张图片
Paste_Image.png

但是下一行显示“Did not provide a command”
问题出在哪里呢?后发现这个事情:

【python】‘图片转字符画’实验,安装pip中的Pillow_第5张图片
Paste_Image.png

4.然后通过pip进行一键安装Pillow。


【python】‘图片转字符画’实验,安装pip中的Pillow_第6张图片
Paste_Image.png
  • 进行 图片转字符画实验
【python】‘图片转字符画’实验,安装pip中的Pillow_第7张图片
Paste_Image.png

其中 ascii.py wm.png 文件都保存在了study_python 中

你可能感兴趣的:(【python】‘图片转字符画’实验,安装pip中的Pillow)