Unable to locate package texlive

Meh*_*hdi 2 installation synaptic latex 12.10

I had a problem with texlive on my ubuntu 12.10. It could not find setspace.sty and tlmgr didn't work. I googled it a little but i couldn't figure it out how to solve it (i'm a rookie)

So i removed texlive from synaptic and installed it again from iso file that i had downloaded (it's TexLive 2012).

But somehow it does not work at all now (pdflatex and etc). I checked synaptic and there is no package installed related to texlive and when when i try to remove it from terminal it shows:

E: Unable to locate package texlive
Run Code Online (Sandbox Code Playgroud)

After tring sudo apt-get update it still shows the same error.

Any suggestion will be appreciated.

ger*_*ijk 6

Sorry to say this, but I think you don't know what you're doing. Let me explain it a bit.

  • It's texlive, not textlive.
  • If you install "from upstream" (the ISO file, rather than Ubuntu packages), it's not being managed by your package management. It will not show up in any of those tools as it doesn't know about it. Please don't mix up installation from both methods - it will get you into more trouble and it will confuse your package management.
  • tlmgr is supposed not to work in Ubuntu, as you should install TeX Live packages using your system package management, rather than another package management tool only for one application. This is a change that Ubuntu/Debian package managers make to software and such a change applies to many more packages. For example, the Firefox updater is disabled in the application itself - you will get it via the system package updates instead. See below one approach I use to find the right Ubuntu package.

Steps to get your system back in a reasonable working state:

  1. Uninstall the TeXLive version you installed using that ISO file. I don't know how to properly uninstall that - it should come with instructions to do so.
  2. Remove all the packages with possible leftovers as well:

    sudo apt-get remove texlive texlive-\*
    
    Run Code Online (Sandbox Code Playgroud)
  3. Reinstall:

    sudo add-apt-repository universe
    sudo apt-get install texlive-generic-recommended
    
    Run Code Online (Sandbox Code Playgroud)
  4. 安装您需要的其他软件包。使用texlive-关键字搜索您可能需要的通用包的包管理。对于特定丢失的.sty文件,请使用packages.ubuntu.com搜索,就像我在这里所做的那样:setspace.stysearch。它会显示这个文件存在于texlive-latex-recommended包中(我猜你以前没有安装过)。