ERROR: Could not find a version that satisfies the requirement PIL (from versions: none)解决方法

我这边问题的原因是版本问题

问题描述

 pip install wordcloud matplotlib jieba PIL

ERROR: Could not find a version that satisfies the requirement PIL (from versions: none)解决方法_第1张图片

首先查看python的版本

ERROR: Could not find a version that satisfies the requirement PIL (from versions: none)解决方法_第2张图片

命令行方式安装

先安装pillow 不要装PIL
ERROR: Could not find a version that satisfies the requirement PIL (from versions: none)解决方法_第3张图片
ERROR: Could not find a version that satisfies the requirement PIL (from versions: none)解决方法_第4张图片

错误的尝试 不过学会了很多终端命令

新建conda环境

查看已经有的环境名
ERROR: Could not find a version that satisfies the requirement PIL (from versions: none)解决方法_第5张图片

基本语法

conda create -n name(环境名) python=3.7(python版本自己指定) 

前提是自己的电脑有andaconda,以我自己的电脑为例。

conda create -n py38 python=3.8
## 这个时候可能会报错 就像下面的一样

查看一下报错 我是傻逼。
ERROR: Could not find a version that satisfies the requirement PIL (from versions: none)解决方法_第6张图片
按照错误的提示 一步步进行下去

conda activate name
conda init powershell

pycharm导入py环境

file seting condaevivirment 我这里导入的是py38环境名
ERROR: Could not find a version that satisfies the requirement PIL (from versions: none)解决方法_第7张图片

你可能感兴趣的:(#,计算机小常识/环境配置,java)