14

I recently installed Ubuntu 13.10 on my Computer. I want to install Latex on my Desktop but i am unable to install it.

I first tried to install using following command:

sudo apt-get install texlive-full

but i am getting following error:

E: Package 'texlive-full' has no installation candidate
chaos
  • 27,506
  • 12
  • 74
  • 77
Ubuntu_New
  • 141
  • 1
  • 1
  • 3

2 Answers2

36

You should try to update your APT cache before: sudo apt-get update

Then try again sudo apt-get install texlive-full

By the way, you can list all texlive available packages by doing: apt-cache search --names-only texlive

Xavier
  • 805
0

...and if Xavier's suggestion does not resolve your issue, make sure you have the universe repository enabled.

To enable it, you can perform the task as outlined in this post:

http://ubuntuforums.org/showthread.php?t=179

Then, update your APT cache with sudo apt-get update.