繁体   English   中英

我正在 Pycharm 中安装 requirements.txt 文件,但我收到此错误该怎么办

[英]I'm installing requirements.txt file in Pycharm but i'm getting this error what to do

UnsatisfiableError: The following specifications were found to be in conflict:

Solving environment: ...working... failed


UnsatisfiableError: The following specifications were found to be in conflict:
  - aiohttp==3.7.3
  - multidict==5.1.0
  - pyrsistent==0.15.7
Use "conda info <package>" to see the dependencies for each package.

您需要更改错误消息中这 3 个包的requirements.txt文件 package 版本。 这些特定版本不存在,或者您已经安装了不同版本的 package。

要列出特定软件包的可用版本,请点击此处的答案

** 一个懒惰的解决方案可以只是将您的requirements.txt文件中的这 3 行更改为:

aiohttp>=3.7.3
multidict>=5.1.0
pyrsistent>=0.15.7

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM