本文介绍了没有名为 pylab 的模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我刚在Fedora上升级到python3,并试图导入 pylab
.但是我得到了一个错误
I just upgraded to python3 on Fedora, and was trying to import pylab
. But instead I got an error
ImportError: No module named 'pylab'
经过一些研究,我发现了一些关于安装包matplotlib的信息
-py3k 使其正常工作.但是,该页面的链接已关闭!也许有一个 yum install
包,我可以用来简单地安装 pylab
以便与python3一起使用?
After some research I found some information about installing a package matplotlib-py3k
to make it work. However, the link to the page is down! Maybe there is a yum install
package I can use to simply install pylab
to work with python3?
python2.x 的包已安装并运行.
The package for python2.x is installed and working.
推荐答案
您需要通过执行以下操作为python3安装matplotlib:
You need to install matplotlib for python3 by performing:
yum install python3-matplotlib
这篇关于没有名为 pylab 的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!