我想安装 sympy,所以当我输入
sudo apt-get install python-sympy
我得到以下输出:
The following NEW packages will be installed:
dvipng fonts-cabin fonts-comfortaa fonts-droid fonts-freefont-otf
fonts-gfs-artemisia fonts-gfs-complutum fonts-gfs-didot
fonts-gfs-neohellenic fonts-gfs-olga fonts-gfs-solomos fonts-inconsolata
fonts-junicode fonts-lato fonts-linuxlibertine fonts-oflb-asana-math
fonts-sil-gentium fonts-sil-gentium-basic fonts-stix otf-freefont
python-sympy texlive-fonts-extra texlive-fonts-extra-doc texlive-xetex
Need to get 228 MB of archives.
After this operation, 524 MB of additional disk space will be used.
我需要所有这些字体吗?我认为这就是尺寸增加这么多的原因。如果我不需要它们,我该如何在没有字体的情况下安装 python-sympy。
据我所知,这是该包的页面python-sympy而且它似乎不依赖/推荐上述软件包。
答案1
texlive-fonts-extra 引入了所有其他字体。虽然我不熟悉 sympy,但我查看了它的网页并注意到,当我在大学里写论文时,磁盘空间的最大消耗者是生成带有数学符号的高质量文本所需的所有字体。
答案2
字体依赖项只是推荐的(依赖项texlive-fonts-extra
)。您可以sympy
使用以下选项安装而不使用它们--no-install-recommends
:
sudo apt-get install python-sympy --no-install-recommends