How can I uninstall steam from my ubuntu? I've tried the terminal step of sudo apt-get remove steam, but it tells me that it doesn't exist, and it does exist, I can see it, please help
Asked
Active
Viewed 6,193 times
1
1 Answers
8
On my system the package is steam-launcher (I installed it from the Steam repos).
See if that's what you have by issuing apt policy steam-launcher in a terminal. If so, that's what you should uninstall.
Organic Marble
- 23,641
- 15
- 70
- 122
sudo apt-get remove steamwould work if you usedsudo apt-get install steam(ordpkg -i& like apt tools). If youdpkg -l |grep steamdo you get a list of installed packages withsteamin their name? (which can be removed byapttools). If you installed in another way, you need to remove it likewise using the reverse of install-method. – guiverc Mar 04 '19 at 01:30