3

enter image description here

I have a newly installed 12.04 64bit Ubuntu machine! fully updated.

I couldn't find steam in software center. looking for the steam 64bit client.

I've desktop also with 12.04 64bit, which has the steam client in the software center. well at least when I installed it.

did someone remove steam from the software center?

Yaron
  • 13,173
Alex
  • 2,099

5 Answers5

3

If you're using a 64-bit version of ubuntu you wont see steam in the official repos. Only the 32-bit version is officially supported. I had to get the .deb from steam's web site.

mikeymop
  • 851
1

Steam is no longer in the official Ubuntu repositories.

Until it reappears there, I would suggest installing Steam directly from Valve. If I remember, the .deb file that they provided will automatically add Valve repositories so that you can receive updates.

BuZZ-dEE
  • 14,223
strugee
  • 1,092
  • i edited that question to have a pic of the search result i get. – Alex Feb 25 '13 at 01:48
  • @Alex right, you have to click "Show 3 technical items" at the bottom. Then the steam-launcher package will appear. – strugee Feb 25 '13 at 02:04
  • idk this is only one of the three things that have a connection to steam. "Upload/download maps to/from a VALVe game server (Client)" – Alex Feb 25 '13 at 02:11
  • the other 2 where somegthing for "sl" and "jacktrip" – Alex Feb 25 '13 at 02:13
  • do i need a curtain ppa? – Alex Feb 25 '13 at 02:18
  • Okay, this is getting confusing. Just run sudo apt-get update && sudo apt-get install steam-launcher in a terminal. – strugee Feb 25 '13 at 04:56
  • This is not an answer to the Original Question. Questioner here asks Why the Ubuntu Software Center not have in list the steam client , not how to install steam from terminal. – NickTux Feb 25 '13 at 08:41
  • i'll edit the answer to include that. – strugee Feb 25 '13 at 19:45
  • Also, the reason i included the terminal commmand was because Alex was getting confused, and wasn't understanding what I was saying, so I decided that the terminal would just be way easier. – strugee Feb 25 '13 at 19:49
  • @strugee your answer doesnt work, except for the terminal installation. the show technical button at the bottom doesnt show the steam installer. (like i said before). – Alex Feb 27 '13 at 02:20
  • @Alex hmm, sorry then. I really have no idea then, as it was definitely showing for me the last time I checked - although I suppose it's possible that it came from the Valve repos. I assumed not though, because there was also a steam package listed (which was directly from Valve). – strugee Feb 27 '13 at 04:02
  • @strugee i did have the beta on my desktop. thats probably why – Alex Feb 27 '13 at 04:05
  • @Alex no, that shouldn't interfere. The problem isn't on your end, it turns out that Steam isn't in the Ubuntu repositories anymore: http://packages.ubuntu.com/search?keywords=steam&searchon=names&suite=all§ion=all. I would recommend installing Steam directly from Valve. – strugee Feb 27 '13 at 04:09
0

After I installed Ubuntu 13.04 64 bit, I realize that I don't see Steam in the software center anymore. I went to the official steam webpage, and downloaded the application. And installed it. It works fine. its a .deb file, which is easily installed. Btw on the website it is written to install steam on your pc, and it support ms Windows and Mac, but if you click on it using ubuntu it gives you a .deb file to install.

Good luck

Yet Another User
  • 2,671
  • 3
  • 23
  • 37
Doddy
  • 1
0

if you install the repo as above then you will install the i386 32 bit steam.

It would be better to install the 64 bit deb file from the valve website if you have a 64 bit operating system.

-1

I followed the steps on the linked page below to add the repository.

I had the exact same symptoms as the OP.

Steam still not showing in Software Center though.

I am now logged in to Steam and downloading Half-Life, which I purchased Years ago. Nice to see some continuity in account purchases!

Instructions to add the Steam PPA

Since Steam is no longer in the Ubuntu repositories it will never show up in Software Center. I find it preferable to have the Software Update maintain the local packages in as current a state as possible. This is why I linked the page above. Yes it takes a few terminal commands.

Our packages are signed by "Valve Software LLC " You can add this key to your package manager with:

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B05498B7

Setup repository with:

sudo sh -c 'echo "deb http://repo.steampowered.com/steam/ precise steam" >> /etc/apt/sources.list.d/steam.list'

Now just

sudo apt-get install steam

The first command allows your system to verify that the package is digitally signed by Valve. The second adds the Valve repository so apt-get can use it. The third actually installs Steam.

I didn't want to search for the proper way to manually install the .deb package and this way allows me to keep steam updated with the rest of my system.