- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了一个警告,该警告仅在运行 pyinstaller 可执行文件时出现。
...appdata\local\programs\python\python37-32\lib\site-packages\PyInstaller\loader\pyimod03_importers.py:627: MatplotlibDeprecationWarning:
The MATPLOTLIBDATA environment variable was deprecated in Matplotlib 3.1 and will be removed in 3.3.
exec(bytecode, module.__dict__)
最佳答案
查找 here the pyinstaller issue这(部分)解决了这个问题。
已为 matplotlib >=3.1 引入了弃用警告。因此,环境变量 MATPLOTLIBDATA
在 future 的版本中, Pandas 将不再使用。但是,由于我不太清楚的原因,PyInstaller 目前依赖于这个变量。
导致警告的代码段在 pyi_rth_mpldata.py 中找到:
os.environ["MATPLOTLIBDATA"] = os.path.join(sys._MEIPASS, "mpl-data")
不幸的是,简单地在本地取消注释该行 (site-packages/PyInstaller/loader/rthooks/rpyi_rth_mpldata.py) 不是一个选项,导致我的 PyInstaller 包崩溃。
pip install 'matplotlib==3.0.3'
) matplotlib/__init__.py:625
) 关于python-3.x - MatplotlibDeprecationWarning 与 Pyinstaller .exe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57517371/
我正在尝试从数据集创建一个箱线图,然后更改每个子图的背景颜色: url = "https://raw.githubusercontent.com/jbrownlee/Datasets/master/i
我制作了一个程序,它进行随机游走并绘制它。它运行良好,但每次运行程序时我都会收到警告。它说: MatplotlibDeprecationWarning: Adding an axes using th
我遇到了一个警告,该警告仅在运行 pyinstaller 可执行文件时出现。 ...appdata\local\programs\python\python37-32\lib\site-package
我在 python3.6 中使用 matplotlib。我的程序运行成功,但它显示以下警告消息: /home/sree/python/PyPrgm.py:41:MatplotlibDeprecatio
我是 Python 编程的新手,但在尝试从 RAVDESS 数据集 wav 文件绘制频谱图时,我一直在与这些错误作斗争。这是代码; `for file in range(0 , len(listOfF
我是一名优秀的程序员,十分优秀!