欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解pyenv下使用python matplotlib模块的问题解决

程序员文章站 2022-08-01 21:30:29
先来描述一下我遇到的问题,在进行matplotlib学习时, plot.show() 总是无法成功运行,总是会报一个错: runtimeerror: python i...

先来描述一下我遇到的问题,在进行matplotlib学习时, plot.show() 总是无法成功运行,总是会报一个错:

runtimeerror: python is not installed as a framework. the mac os x backend will not be able to function correctly if python is not installed as a framework. see the python documentation for more information on installing python as a framework on mac os x. please either reinstall python as a framework, or try one of the other backends. if you are using (ana)conda please install python.app and replace the use of 'python' with 'pythonw'. see 'working with matplotlib on osx' in the matplotlib faq for more information.

其实意思很简单,就是我用的python并不是一个作为系统框架存在的,因为我为了方便管理python的版本,选择了 pyenv 这个管理工具,是一个独立出来的python环境。

尝试解决无果

参考网上众多的解决方法,例如以下两个最常见的:

方法一: 添加如下两行 代码解决:

>>> import matplotlib
>>> matplotlib.use('tkagg')
##在import matplotlib下的模块,如pyplot等之前添加上面2句
>>> import matplotlib.pyplot as plt

方法二: 添加一下matplotlib的配置:

echo "backend: tkagg" >> ~/.matplotlib/matplotlibrc

然而,以上这两种解决方式都***无法解决我的问题***,此时出现了第二个错误:

no module named '_tkinter'

说是找不到 tkinter 这个模块,找了网上大多数方法,全都是linux系统下的解决方案,我真的很好奇没有一个使用mac的用户出现我这样的问题吗? 究其原因,是因为,使用 pyenv 独立安装出来的python中并没有 tkinter 这个模块,于是尝试直接安装 tkinter ,结果竟然提示没有发现 tkinter 包!

pip3 install tkinter
collecting tkinter
could not find a version that satisfies the requirement tkinter (from versions: )
no matching distribution found for tkinter

来到这,我不禁陷入了深深的思考,这个 tkinter 到底是何方神圣,去了python社区: ,这才懂了他是啥玩意:

the tkinter package (“tk interface”) is the standard python interface to the tk gui toolkit. both tk and  tkinter are available on most unix platforms, as well as on windows systems. (tk itself is not part of python; it is maintained at activestate.) running  python -m tkinter from the command line should open a window demonstrating a simple tk interface, letting you know that  tkinter is properly installed on your system, and also showing what version of tcl/tk is installed, so you can read the tcl/tk documentation specific to that version.

说白了, tkinter 就是一个利用python做gui(图形用户界面),它提供各种标准的 gui 接口项,以利于迅速进行高级应用程序开发。

那么究竟去哪安装这个 tkinter 包,说实话到现在我也不知道如何利用 pyenv 去安装 tkinter ,那这个问题又该怎么解决呢?

曲线救国

既然 tkinter 这个gui库没用,那换个库是不是就好了呢?结果的确和我想的一样,在我换了一个gui库之后,他的确成功了。 具体操作如下: 在出现 python is not installed as a framework. the mac os x backend will not be able to function correctly if python is not installed as a framework. 这个错误的时候,在终端输入以下命令:

echo "backend : qt5agg" > ~/.matplotlib/matplotlibrc

如果提示你没有安装 pyqt 的话,你就需要执行

brew install pyqt

然后在执行

pip install pyqt5

这时候在运行你的代码就可以了。

详解pyenv下使用python matplotlib模块的问题解决

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。