美文网首页Python 进阶问题解决
windows 安装 Pillow 模块

windows 安装 Pillow 模块

作者: 倚南_Determined | 来源:发表于2020-01-13 16:52 被阅读0次

    运行

    pip install pillow 
    

    报错

     Could not find a version that satisfies the requirement pillow (from versions: )
    No matching distribution found for pillow
    
    image.png
    这个时候就需要我们手动去下载第三方库然后安装。
    首先,点击:https://www.lfd.uci.edu/~gohlke/pythonlibs/
    找到 Pillow,单击即可下载
    image.png
    然后,使用命令
    cmd 安装
    pip install path\文件名  
    
    image.png

    如果安装了git 使用

    pip install path/文件名 
    
    image.png

    安装成功。

    相关文章

      网友评论

        本文标题:windows 安装 Pillow 模块

        本文链接:https://www.haomeiwen.com/subject/czhnactx.html