Installing Steam in Ubuntu
I am currently using Ubuntu 14.10. Steam is showing up in the Ubuntu Software Center, but when I click on it it says:
Not found
There isn't a software package called "steam" in your current software sources.
Is there a fix for this? Am I the only one having this problem?
software-installation steam
add a comment |
I am currently using Ubuntu 14.10. Steam is showing up in the Ubuntu Software Center, but when I click on it it says:
Not found
There isn't a software package called "steam" in your current software sources.
Is there a fix for this? Am I the only one having this problem?
software-installation steam
1
Get the Steam package from the official website. Here's a link:http://store.steampowered.com/about/
. If you meet any error dosudo apt-get -f install
to install dependencies.
– dat tutbrus
Nov 4 '15 at 11:17
add a comment |
I am currently using Ubuntu 14.10. Steam is showing up in the Ubuntu Software Center, but when I click on it it says:
Not found
There isn't a software package called "steam" in your current software sources.
Is there a fix for this? Am I the only one having this problem?
software-installation steam
I am currently using Ubuntu 14.10. Steam is showing up in the Ubuntu Software Center, but when I click on it it says:
Not found
There isn't a software package called "steam" in your current software sources.
Is there a fix for this? Am I the only one having this problem?
software-installation steam
software-installation steam
edited Oct 5 '18 at 19:40
karel
57.3k12127146
57.3k12127146
asked Nov 6 '14 at 23:22
Levi Rodriguez
131124
131124
1
Get the Steam package from the official website. Here's a link:http://store.steampowered.com/about/
. If you meet any error dosudo apt-get -f install
to install dependencies.
– dat tutbrus
Nov 4 '15 at 11:17
add a comment |
1
Get the Steam package from the official website. Here's a link:http://store.steampowered.com/about/
. If you meet any error dosudo apt-get -f install
to install dependencies.
– dat tutbrus
Nov 4 '15 at 11:17
1
1
Get the Steam package from the official website. Here's a link:
http://store.steampowered.com/about/
. If you meet any error do sudo apt-get -f install
to install dependencies.– dat tutbrus
Nov 4 '15 at 11:17
Get the Steam package from the official website. Here's a link:
http://store.steampowered.com/about/
. If you meet any error do sudo apt-get -f install
to install dependencies.– dat tutbrus
Nov 4 '15 at 11:17
add a comment |
8 Answers
8
active
oldest
votes
First Update the system. Then try with commandline as follows:
sudo apt-get update && sudo apt-get install steam
4
E: Unable to locate package steam
– alvas
Aug 20 '15 at 11:35
1
-1 the package was removed in 14.10
– Thorbjørn Ravn Andersen
Oct 27 '15 at 9:47
4
+1 It appears that it has been readded in 15.10.
– Aracthor
Oct 28 '15 at 13:13
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:14
add a comment |
Steam for Windows under WINE can be installed natively as a snap package in all currently supported versions of Ubuntu. This snap package downloads and installs Steam for Windows in WINE on Linux. To install Steam open the terminal and type:
sudo apt install snapd
sudo snap install steamforwindows --edge
The first setup takes a little while to download the necessary parts. Subsequent launches are faster.
1
For 64-bit Ubuntu, see this answer: askubuntu.com/a/706073/110157
– That Brazilian Guy
Mar 23 '17 at 15:04
add a comment |
The steam
package is part of the "multiverse" repository for Ubuntu versios 14.04 onwards, but only for 32 bit versions of Ubuntu. If you want the 64-bit Steam package, you need to add the Steam repository to your sources.
32-bit Ubuntu
- enable the "multiverse" repository
- run
sudo apt-get update
- Install
steam
using eitherapt-get
or the Software Center.
64-bit Ubuntu
- add the following line to
/etc/apt/sources.list
:
deb http://repo.steampowered.com/steam/ precise steam
- run
sudo apt-get update && sudo apt-get install steam-launcher
or
- install the
.deb
manually from the official site.
add a comment |
If it is not possible to find in the Software Center and not possible to install .deb file, then add the source in the software center manually.
Source = deb http://repo.steampowered.com/steam/ precise steam
Now possible to install it !
sudo apt-get install steam
2
It should be possible to install it like that without adding the source.
– Tim
Dec 3 '14 at 8:54
1
@Tim Only in the 32-bit version.steam
is part of the "multiverse" repository, but only the 32-bit version.
– That Brazilian Guy
Dec 5 '15 at 0:24
add a comment |
Using Xubuntu 14.10 x64, from the terminal:
sudo apt-get update && sudo apt-get install steam
This will download and install Steam. Accept the EULA, update Steam, then sign in with your Steam login. BAM! Steam on Xubuntu!
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:15
add a comment |
I confirm that using
sudo apt-get install steam
works fine (still I don't know why steam seems not available on Software Center), however if the application does not appear in menu it is not necessary rebooting, just run
sudo updatedb
Do you use 14.10 or another version?
– Thorbjørn Ravn Andersen
Oct 27 '15 at 9:50
Add the time of the above message, I was using 14.10, recently I installed Steam on a 15.04 without any problem
– clobrano
Oct 27 '15 at 11:37
I don't get why -2 points?
– clobrano
Dec 5 '15 at 22:26
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:15
Is this something new? When I wrote that answer I was using a 64bit machine and it worked
– clobrano
May 27 '16 at 9:14
add a comment |
You will need to install the Steam package manually.
Go to http://store.steampowered.com/about/ and choose the "Install Steam now" link. This will download a debian package (ends in .deb
) which you can open directly in the Ubuntu Software Center app. The "Install" button will then install Steam.
It appears it does not show up in the launchbar, but you can search for it (tap the Windows button) and launch it. When launched right-click on the icon to lock it to the launch bar.
You can then search for the Steam
add a comment |
If the apt-get install steam
doesn't work do the followings
wget https://steamcdn-a.akamaihd.net/client/installer/steam.deb
sudo dpkg -i steam.deb
you may have to rm -r ~/.steam ~/.local/share/Steam
directory for removing the old config
If you have problems installing or running it, try following question
add a comment |
protected by Community♦ Jun 28 '17 at 16:40
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
8 Answers
8
active
oldest
votes
8 Answers
8
active
oldest
votes
active
oldest
votes
active
oldest
votes
First Update the system. Then try with commandline as follows:
sudo apt-get update && sudo apt-get install steam
4
E: Unable to locate package steam
– alvas
Aug 20 '15 at 11:35
1
-1 the package was removed in 14.10
– Thorbjørn Ravn Andersen
Oct 27 '15 at 9:47
4
+1 It appears that it has been readded in 15.10.
– Aracthor
Oct 28 '15 at 13:13
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:14
add a comment |
First Update the system. Then try with commandline as follows:
sudo apt-get update && sudo apt-get install steam
4
E: Unable to locate package steam
– alvas
Aug 20 '15 at 11:35
1
-1 the package was removed in 14.10
– Thorbjørn Ravn Andersen
Oct 27 '15 at 9:47
4
+1 It appears that it has been readded in 15.10.
– Aracthor
Oct 28 '15 at 13:13
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:14
add a comment |
First Update the system. Then try with commandline as follows:
sudo apt-get update && sudo apt-get install steam
First Update the system. Then try with commandline as follows:
sudo apt-get update && sudo apt-get install steam
answered Nov 6 '14 at 23:43
user308564
4
E: Unable to locate package steam
– alvas
Aug 20 '15 at 11:35
1
-1 the package was removed in 14.10
– Thorbjørn Ravn Andersen
Oct 27 '15 at 9:47
4
+1 It appears that it has been readded in 15.10.
– Aracthor
Oct 28 '15 at 13:13
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:14
add a comment |
4
E: Unable to locate package steam
– alvas
Aug 20 '15 at 11:35
1
-1 the package was removed in 14.10
– Thorbjørn Ravn Andersen
Oct 27 '15 at 9:47
4
+1 It appears that it has been readded in 15.10.
– Aracthor
Oct 28 '15 at 13:13
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:14
4
4
E: Unable to locate package steam
– alvas
Aug 20 '15 at 11:35
E: Unable to locate package steam
– alvas
Aug 20 '15 at 11:35
1
1
-1 the package was removed in 14.10
– Thorbjørn Ravn Andersen
Oct 27 '15 at 9:47
-1 the package was removed in 14.10
– Thorbjørn Ravn Andersen
Oct 27 '15 at 9:47
4
4
+1 It appears that it has been readded in 15.10.
– Aracthor
Oct 28 '15 at 13:13
+1 It appears that it has been readded in 15.10.
– Aracthor
Oct 28 '15 at 13:13
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:14
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:14
add a comment |
Steam for Windows under WINE can be installed natively as a snap package in all currently supported versions of Ubuntu. This snap package downloads and installs Steam for Windows in WINE on Linux. To install Steam open the terminal and type:
sudo apt install snapd
sudo snap install steamforwindows --edge
The first setup takes a little while to download the necessary parts. Subsequent launches are faster.
1
For 64-bit Ubuntu, see this answer: askubuntu.com/a/706073/110157
– That Brazilian Guy
Mar 23 '17 at 15:04
add a comment |
Steam for Windows under WINE can be installed natively as a snap package in all currently supported versions of Ubuntu. This snap package downloads and installs Steam for Windows in WINE on Linux. To install Steam open the terminal and type:
sudo apt install snapd
sudo snap install steamforwindows --edge
The first setup takes a little while to download the necessary parts. Subsequent launches are faster.
1
For 64-bit Ubuntu, see this answer: askubuntu.com/a/706073/110157
– That Brazilian Guy
Mar 23 '17 at 15:04
add a comment |
Steam for Windows under WINE can be installed natively as a snap package in all currently supported versions of Ubuntu. This snap package downloads and installs Steam for Windows in WINE on Linux. To install Steam open the terminal and type:
sudo apt install snapd
sudo snap install steamforwindows --edge
The first setup takes a little while to download the necessary parts. Subsequent launches are faster.
Steam for Windows under WINE can be installed natively as a snap package in all currently supported versions of Ubuntu. This snap package downloads and installs Steam for Windows in WINE on Linux. To install Steam open the terminal and type:
sudo apt install snapd
sudo snap install steamforwindows --edge
The first setup takes a little while to download the necessary parts. Subsequent launches are faster.
edited Oct 16 '18 at 13:26
answered Nov 7 '14 at 0:05
karel
57.3k12127146
57.3k12127146
1
For 64-bit Ubuntu, see this answer: askubuntu.com/a/706073/110157
– That Brazilian Guy
Mar 23 '17 at 15:04
add a comment |
1
For 64-bit Ubuntu, see this answer: askubuntu.com/a/706073/110157
– That Brazilian Guy
Mar 23 '17 at 15:04
1
1
For 64-bit Ubuntu, see this answer: askubuntu.com/a/706073/110157
– That Brazilian Guy
Mar 23 '17 at 15:04
For 64-bit Ubuntu, see this answer: askubuntu.com/a/706073/110157
– That Brazilian Guy
Mar 23 '17 at 15:04
add a comment |
The steam
package is part of the "multiverse" repository for Ubuntu versios 14.04 onwards, but only for 32 bit versions of Ubuntu. If you want the 64-bit Steam package, you need to add the Steam repository to your sources.
32-bit Ubuntu
- enable the "multiverse" repository
- run
sudo apt-get update
- Install
steam
using eitherapt-get
or the Software Center.
64-bit Ubuntu
- add the following line to
/etc/apt/sources.list
:
deb http://repo.steampowered.com/steam/ precise steam
- run
sudo apt-get update && sudo apt-get install steam-launcher
or
- install the
.deb
manually from the official site.
add a comment |
The steam
package is part of the "multiverse" repository for Ubuntu versios 14.04 onwards, but only for 32 bit versions of Ubuntu. If you want the 64-bit Steam package, you need to add the Steam repository to your sources.
32-bit Ubuntu
- enable the "multiverse" repository
- run
sudo apt-get update
- Install
steam
using eitherapt-get
or the Software Center.
64-bit Ubuntu
- add the following line to
/etc/apt/sources.list
:
deb http://repo.steampowered.com/steam/ precise steam
- run
sudo apt-get update && sudo apt-get install steam-launcher
or
- install the
.deb
manually from the official site.
add a comment |
The steam
package is part of the "multiverse" repository for Ubuntu versios 14.04 onwards, but only for 32 bit versions of Ubuntu. If you want the 64-bit Steam package, you need to add the Steam repository to your sources.
32-bit Ubuntu
- enable the "multiverse" repository
- run
sudo apt-get update
- Install
steam
using eitherapt-get
or the Software Center.
64-bit Ubuntu
- add the following line to
/etc/apt/sources.list
:
deb http://repo.steampowered.com/steam/ precise steam
- run
sudo apt-get update && sudo apt-get install steam-launcher
or
- install the
.deb
manually from the official site.
The steam
package is part of the "multiverse" repository for Ubuntu versios 14.04 onwards, but only for 32 bit versions of Ubuntu. If you want the 64-bit Steam package, you need to add the Steam repository to your sources.
32-bit Ubuntu
- enable the "multiverse" repository
- run
sudo apt-get update
- Install
steam
using eitherapt-get
or the Software Center.
64-bit Ubuntu
- add the following line to
/etc/apt/sources.list
:
deb http://repo.steampowered.com/steam/ precise steam
- run
sudo apt-get update && sudo apt-get install steam-launcher
or
- install the
.deb
manually from the official site.
edited May 15 '16 at 14:13
answered Dec 4 '15 at 23:57
That Brazilian Guy
1,76551639
1,76551639
add a comment |
add a comment |
If it is not possible to find in the Software Center and not possible to install .deb file, then add the source in the software center manually.
Source = deb http://repo.steampowered.com/steam/ precise steam
Now possible to install it !
sudo apt-get install steam
2
It should be possible to install it like that without adding the source.
– Tim
Dec 3 '14 at 8:54
1
@Tim Only in the 32-bit version.steam
is part of the "multiverse" repository, but only the 32-bit version.
– That Brazilian Guy
Dec 5 '15 at 0:24
add a comment |
If it is not possible to find in the Software Center and not possible to install .deb file, then add the source in the software center manually.
Source = deb http://repo.steampowered.com/steam/ precise steam
Now possible to install it !
sudo apt-get install steam
2
It should be possible to install it like that without adding the source.
– Tim
Dec 3 '14 at 8:54
1
@Tim Only in the 32-bit version.steam
is part of the "multiverse" repository, but only the 32-bit version.
– That Brazilian Guy
Dec 5 '15 at 0:24
add a comment |
If it is not possible to find in the Software Center and not possible to install .deb file, then add the source in the software center manually.
Source = deb http://repo.steampowered.com/steam/ precise steam
Now possible to install it !
sudo apt-get install steam
If it is not possible to find in the Software Center and not possible to install .deb file, then add the source in the software center manually.
Source = deb http://repo.steampowered.com/steam/ precise steam
Now possible to install it !
sudo apt-get install steam
edited Dec 3 '14 at 8:54
Tim
19.6k1484139
19.6k1484139
answered Dec 3 '14 at 2:49
Ray
491
491
2
It should be possible to install it like that without adding the source.
– Tim
Dec 3 '14 at 8:54
1
@Tim Only in the 32-bit version.steam
is part of the "multiverse" repository, but only the 32-bit version.
– That Brazilian Guy
Dec 5 '15 at 0:24
add a comment |
2
It should be possible to install it like that without adding the source.
– Tim
Dec 3 '14 at 8:54
1
@Tim Only in the 32-bit version.steam
is part of the "multiverse" repository, but only the 32-bit version.
– That Brazilian Guy
Dec 5 '15 at 0:24
2
2
It should be possible to install it like that without adding the source.
– Tim
Dec 3 '14 at 8:54
It should be possible to install it like that without adding the source.
– Tim
Dec 3 '14 at 8:54
1
1
@Tim Only in the 32-bit version.
steam
is part of the "multiverse" repository, but only the 32-bit version.– That Brazilian Guy
Dec 5 '15 at 0:24
@Tim Only in the 32-bit version.
steam
is part of the "multiverse" repository, but only the 32-bit version.– That Brazilian Guy
Dec 5 '15 at 0:24
add a comment |
Using Xubuntu 14.10 x64, from the terminal:
sudo apt-get update && sudo apt-get install steam
This will download and install Steam. Accept the EULA, update Steam, then sign in with your Steam login. BAM! Steam on Xubuntu!
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:15
add a comment |
Using Xubuntu 14.10 x64, from the terminal:
sudo apt-get update && sudo apt-get install steam
This will download and install Steam. Accept the EULA, update Steam, then sign in with your Steam login. BAM! Steam on Xubuntu!
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:15
add a comment |
Using Xubuntu 14.10 x64, from the terminal:
sudo apt-get update && sudo apt-get install steam
This will download and install Steam. Accept the EULA, update Steam, then sign in with your Steam login. BAM! Steam on Xubuntu!
Using Xubuntu 14.10 x64, from the terminal:
sudo apt-get update && sudo apt-get install steam
This will download and install Steam. Accept the EULA, update Steam, then sign in with your Steam login. BAM! Steam on Xubuntu!
answered Mar 20 '15 at 19:59
Christopher S. Atkins
295
295
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:15
add a comment |
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:15
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:15
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:15
add a comment |
I confirm that using
sudo apt-get install steam
works fine (still I don't know why steam seems not available on Software Center), however if the application does not appear in menu it is not necessary rebooting, just run
sudo updatedb
Do you use 14.10 or another version?
– Thorbjørn Ravn Andersen
Oct 27 '15 at 9:50
Add the time of the above message, I was using 14.10, recently I installed Steam on a 15.04 without any problem
– clobrano
Oct 27 '15 at 11:37
I don't get why -2 points?
– clobrano
Dec 5 '15 at 22:26
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:15
Is this something new? When I wrote that answer I was using a 64bit machine and it worked
– clobrano
May 27 '16 at 9:14
add a comment |
I confirm that using
sudo apt-get install steam
works fine (still I don't know why steam seems not available on Software Center), however if the application does not appear in menu it is not necessary rebooting, just run
sudo updatedb
Do you use 14.10 or another version?
– Thorbjørn Ravn Andersen
Oct 27 '15 at 9:50
Add the time of the above message, I was using 14.10, recently I installed Steam on a 15.04 without any problem
– clobrano
Oct 27 '15 at 11:37
I don't get why -2 points?
– clobrano
Dec 5 '15 at 22:26
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:15
Is this something new? When I wrote that answer I was using a 64bit machine and it worked
– clobrano
May 27 '16 at 9:14
add a comment |
I confirm that using
sudo apt-get install steam
works fine (still I don't know why steam seems not available on Software Center), however if the application does not appear in menu it is not necessary rebooting, just run
sudo updatedb
I confirm that using
sudo apt-get install steam
works fine (still I don't know why steam seems not available on Software Center), however if the application does not appear in menu it is not necessary rebooting, just run
sudo updatedb
answered Jan 13 '15 at 17:50
clobrano
15716
15716
Do you use 14.10 or another version?
– Thorbjørn Ravn Andersen
Oct 27 '15 at 9:50
Add the time of the above message, I was using 14.10, recently I installed Steam on a 15.04 without any problem
– clobrano
Oct 27 '15 at 11:37
I don't get why -2 points?
– clobrano
Dec 5 '15 at 22:26
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:15
Is this something new? When I wrote that answer I was using a 64bit machine and it worked
– clobrano
May 27 '16 at 9:14
add a comment |
Do you use 14.10 or another version?
– Thorbjørn Ravn Andersen
Oct 27 '15 at 9:50
Add the time of the above message, I was using 14.10, recently I installed Steam on a 15.04 without any problem
– clobrano
Oct 27 '15 at 11:37
I don't get why -2 points?
– clobrano
Dec 5 '15 at 22:26
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:15
Is this something new? When I wrote that answer I was using a 64bit machine and it worked
– clobrano
May 27 '16 at 9:14
Do you use 14.10 or another version?
– Thorbjørn Ravn Andersen
Oct 27 '15 at 9:50
Do you use 14.10 or another version?
– Thorbjørn Ravn Andersen
Oct 27 '15 at 9:50
Add the time of the above message, I was using 14.10, recently I installed Steam on a 15.04 without any problem
– clobrano
Oct 27 '15 at 11:37
Add the time of the above message, I was using 14.10, recently I installed Steam on a 15.04 without any problem
– clobrano
Oct 27 '15 at 11:37
I don't get why -2 points?
– clobrano
Dec 5 '15 at 22:26
I don't get why -2 points?
– clobrano
Dec 5 '15 at 22:26
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:15
This answer only works for Ubuntu 32-bit. Steam is part of the "multiverse" repository, but only the 32-bit version. If you have use 64-bit, check the other answers.
– That Brazilian Guy
May 26 '16 at 16:15
Is this something new? When I wrote that answer I was using a 64bit machine and it worked
– clobrano
May 27 '16 at 9:14
Is this something new? When I wrote that answer I was using a 64bit machine and it worked
– clobrano
May 27 '16 at 9:14
add a comment |
You will need to install the Steam package manually.
Go to http://store.steampowered.com/about/ and choose the "Install Steam now" link. This will download a debian package (ends in .deb
) which you can open directly in the Ubuntu Software Center app. The "Install" button will then install Steam.
It appears it does not show up in the launchbar, but you can search for it (tap the Windows button) and launch it. When launched right-click on the icon to lock it to the launch bar.
You can then search for the Steam
add a comment |
You will need to install the Steam package manually.
Go to http://store.steampowered.com/about/ and choose the "Install Steam now" link. This will download a debian package (ends in .deb
) which you can open directly in the Ubuntu Software Center app. The "Install" button will then install Steam.
It appears it does not show up in the launchbar, but you can search for it (tap the Windows button) and launch it. When launched right-click on the icon to lock it to the launch bar.
You can then search for the Steam
add a comment |
You will need to install the Steam package manually.
Go to http://store.steampowered.com/about/ and choose the "Install Steam now" link. This will download a debian package (ends in .deb
) which you can open directly in the Ubuntu Software Center app. The "Install" button will then install Steam.
It appears it does not show up in the launchbar, but you can search for it (tap the Windows button) and launch it. When launched right-click on the icon to lock it to the launch bar.
You can then search for the Steam
You will need to install the Steam package manually.
Go to http://store.steampowered.com/about/ and choose the "Install Steam now" link. This will download a debian package (ends in .deb
) which you can open directly in the Ubuntu Software Center app. The "Install" button will then install Steam.
It appears it does not show up in the launchbar, but you can search for it (tap the Windows button) and launch it. When launched right-click on the icon to lock it to the launch bar.
You can then search for the Steam
answered Oct 27 '15 at 9:49
Thorbjørn Ravn Andersen
2,23331423
2,23331423
add a comment |
add a comment |
If the apt-get install steam
doesn't work do the followings
wget https://steamcdn-a.akamaihd.net/client/installer/steam.deb
sudo dpkg -i steam.deb
you may have to rm -r ~/.steam ~/.local/share/Steam
directory for removing the old config
If you have problems installing or running it, try following question
add a comment |
If the apt-get install steam
doesn't work do the followings
wget https://steamcdn-a.akamaihd.net/client/installer/steam.deb
sudo dpkg -i steam.deb
you may have to rm -r ~/.steam ~/.local/share/Steam
directory for removing the old config
If you have problems installing or running it, try following question
add a comment |
If the apt-get install steam
doesn't work do the followings
wget https://steamcdn-a.akamaihd.net/client/installer/steam.deb
sudo dpkg -i steam.deb
you may have to rm -r ~/.steam ~/.local/share/Steam
directory for removing the old config
If you have problems installing or running it, try following question
If the apt-get install steam
doesn't work do the followings
wget https://steamcdn-a.akamaihd.net/client/installer/steam.deb
sudo dpkg -i steam.deb
you may have to rm -r ~/.steam ~/.local/share/Steam
directory for removing the old config
If you have problems installing or running it, try following question
edited Apr 13 '17 at 12:24
Community♦
1
1
answered Nov 4 '15 at 10:06
Philippe Gachoud
3,1972537
3,1972537
add a comment |
add a comment |
protected by Community♦ Jun 28 '17 at 16:40
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
1
Get the Steam package from the official website. Here's a link:
http://store.steampowered.com/about/
. If you meet any error dosudo apt-get -f install
to install dependencies.– dat tutbrus
Nov 4 '15 at 11:17