我在tkinter中编写了一个使用matplotlib的简单GUI应用程序。鉴于我没有使用Qt后端,我想我的应用程序不需要它,所以我不想将它包含在我的conda环境中:我需要我的环境尽可能轻量级尽可能。不幸的是,命令“conda install matplotlib”默认安装Qt。有办法防止这种情况吗?
我在Windows 10上使用anaconda。
答案 0 :(得分:1)
Conda Forge提供的a matplotlib-base
package不包括Qt依赖项。
conda install -c conda-forge matplotlib-base
我可以确认这足以在Jupyter笔记本中生成图像。