我想在我的Kali Linux上安装texlie。我运行apt-get install texlive-full
,但收到了以下错误消息:
root@begueradj:~# sudo apt-get install texlive-full
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package texlive-full is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'texlive-full' has no installation candidate
如何在Kali上安装TexLive?
注意:
root@begueradj:~# cat /etc/issue
Kali GNU/Linux 1.1.0 \n \l
提前谢谢你。
发布于 2016-12-02 19:12:18
Sudo apt-get install kali-linux-all
kali-linux-all包提供了texlive等更多功能。
使用15 GB
apt-cache show kali-linux-all | grep depends
或者有个简单的版本
sudo apt-get update
sudo apt-get install texlive <- basic
sudo apt-get update
sudo apt-get install texlive-full
或者您可以单独安装该软件包。
sudo apt-get update
sudo apt-get install texlive-base
sudo apt-get install texlive-extra-utils
sudo apt-get install texlive-font-utils
sudo alt-get install texlive-generic-extra
sudo apt-get install texlive-pstricks-doc
sudo apt-get install texlive-pstricks
sudo apt-get install sharutils
sudo apt-get install texmaker
sudo apt-get install texlive htmlxml
sudo apt-get install texlive-generic-recommended
sudo apt-get install texlive-latex-extra-doc
sudo apt-get install texlive-latex-extra
sudo apt-get install texlive-latex-recommended
sudo apt-get install texlive-latex-recommended-doc
sudo apt-get install texlive-pictures
sudo apt-get install texlive-pictures-doc
sudo apt-get install texlive-latex-base
sudo apt-get install texlive-latex-base-doc
sudo apt-get install gv texlive-lang-all
sudo apt-get install texlive-lang-english
sudo apt-get install texlive-binaries
sudo apt-get install gedit-latex-plugin
sudo apt-get install latex-beamer texpower
sudo apt-get install texlive-latex-extra texpower-examples imagemagick
或者用以下方法来简化它:
apt-get build-dep texlive
man latex <- more info
也请参阅初学者使用乳胶的说明。
www.dickimaw-books.com/latex/novices/html/editorandterminal.html
移除
sudo apt-获取--清除,删除texlive*
发布于 2017-01-02 03:02:19
你应该:
mount <DOWNLOAD_PATH/texlive2016.iso /mnt>
I
启动安装过程https://unix.stackexchange.com/questions/217564
复制相似问题