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 LinuxにTexLiveをインストールする方法は?
メモ:
root@begueradj:~# cat /etc/issue
Kali GNU/Linux 1.1.0 \n \l
よろしくお願いします。
ベストアンサー1
Sudo apt-get install kali-linux-all
kali-linux-allパッケージにはtexliveなどが付属しています。
使用量15GB
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-get --purge 削除 texlive*