Author Topic: How Do I Update Attract Mode?  (Read 4796 times)

scout43

  • Jr. Member
  • **
  • Posts: 14
    • View Profile
How Do I Update Attract Mode?
« on: July 03, 2016, 10:06:54 AM »
I am using AM paired with emulation station on a RaspberryPi 3. How is it that I can update to AM 2.1.0? I am relatively new so if anyone could walk me through the process, that would be fantastic. Thanks in advance!

progets

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 1271
    • View Profile
Re: How Do I Update Attract Mode?
« Reply #1 on: July 03, 2016, 09:05:08 PM »
You would need to recompile Attract-Mode. Make a backup of your /home/pi/.attract folder before you start.

Code: [Select]
cd ~
mkdir develop
sudo apt-get update
sudo apt-get upgrade
cd ~/develop
git clone --depth 1 https://github.com/mickelson/attract attract
cd attract
make USE_GLES=1
sudo make install

bbkobeman

  • Newbie
  • *
  • Posts: 1
    • View Profile
Re: How Do I Update Attract Mode?
« Reply #2 on: November 26, 2016, 05:01:57 PM »
Sorry, I am a complete noob here.  Once I get to the git clone command, it prompts me for a username & password.  I went out to GitHub and created a username / password, but when I use that it just says "remote: Repository not found".

I have checked the URL again and again and it's correct, but I just can't seem to get past this issue.

I'm sure it's something stupid simple that I am doing wrong, but again I am a complete noob.  Any help is greatly appreciated.

keilmillerjr

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 1167
    • View Profile
Re: How Do I Update Attract Mode?
« Reply #3 on: November 26, 2016, 08:37:11 PM »
Try cloning with the ssh url. It should be the same except start with git@github.com. Of course, you need ssh set up.