I've recently downloaded and installed texlive2020 Image file with mounting .iso and running this command: sudo perl install-tl and it's working very well.
Now I wanted to install an editor like Texstudio or Gummi from repositories. So I used:
sudo apt install Texstudio
But it says it's going to install some new packages including texlive-xetex.Many people suggest don't install both .iso and repositories texlive since it cause problems.
Is there a way to install a TeX editors without installing texlive again?
sudo apt autoremoveand got rid of the not-anymore-needed packages. You can also try to remove those packages manually ... – Tomáš Kruliš Aug 12 '20 at 07:01sudo apt install --no-install-recommends gummiand it worked! – mokazemi Aug 13 '20 at 06:20