如何解决python3.6版本兼容错误

2024-04-20 06:49:38 发布

您现在位置:Python中文网/ 问答频道 /正文

我需要在python3.6.2上安装matplotlib,但是在尝试安装时遇到了这个错误(安装matplotlib包来设计图形)。错误是:-

Could not find a version that satisfies the requirement install (from versions: )

No matching distribution found for install”


操作系统是Windows 10-64位。在

我试图从与https://www.lfd.uci.edu/~gohlke/pythonlibs/共享的同一链接安装包。在

但同样的错误也出现了。在

我试图从命令行plus从bluescreen命令python packagename.setup安装,结果抛出了上面提到的错误。 对于pythonversion3.6.2包,matplotlib版本3.0.2似乎无法安装,因为每次都会出现相同的错误,如前一篇文章所述。在

我们是否可以为饼图或图形等使用类似的其他软件包,因为上面提到的错误而没有安装matplotlib版本3.0.2?在


Tags: installthefrom版本图形thatmatplotlibversion
1条回答
网友
1楼 · 发布于 2024-04-20 06:49:38

你试过用“python3-m pip install matplotlib”安装它吗?Matplotlib应该与您的Python版本一起使用,可能您无意中尝试将其安装到较旧的Python版本中。在

相关问题 更多 >