Pyinstaller Matlab弃用警告

时间:2019-09-23 05:22:38

标签: python pyinstaller

通过pyinstaller使用以下命令编译python脚本后:

ProxyPass /sso https://192.168.10.1/ 
ProxyPassReverse /sso https://192.168.10.1/

我得到警告:

  

D:\ Users \ cdoyle \ AppData \ Roaming \ Python \ Python37 \ sitepackages \ PyInstaller \ loader \ pyimod03_importers.py:627:MatplotlibDeprecationWarning:

     

MATPLOTlib 3.1中不推荐使用MATPLOTLIBDATA环境变量,而在3.3中将其删除。   exec(字节码,模块。 dict


从我的终端运行文件时,仅在编译后才显示。我在代码中曾尝试过尝试并阻止它,但似乎并没有达到目的

    pyinstaller --onefile --ico=hub_blue.ico SearchSet.py

我要导入以下库:

import warnings
warnings.filterwarnings("ignore")

1 个答案:

答案 0 :(得分:0)

How to suppress all warnings in window of executable file generated by pyinstaller中有一个类似的问题

您可以禁止显示警告

exe = EXE(pyz,
  a.scripts,
  [('W ignore', None, 'OPTION')],
  # ...