Shop OBEX P1 Docs P2 Docs Learn Events
PropellerIDE Qt5 on Raspi — Parallax Forums

PropellerIDE Qt5 on Raspi

Ray0665Ray0665 Posts: 231
edited 2015-04-01 14:32 in General Discussion
Just downloaded and installed PropellerIDE on a Raspberry Pi
When I tried to run it I have Qt5 errors.
I noticed several Qt5 .so files in the bin directory, do i need to relocate these files?
to Where?
Is that all thats needed to get it to run on the Rpi?

Comments

  • Keith YoungKeith Young Posts: 569
    edited 2015-04-01 09:18
    I've personally never had this issue. I have always used Raspian, what version did you use? I follow these instructions completely, with the exception of how I format the SD Card. I've never had a problem, and I've installed this on 5 Raspberry Pis.

    http://learn.parallax.com/propeller-c-set-simpleide/raspberrypi
  • Ray0665Ray0665 Posts: 231
    edited 2015-04-01 09:50
    I am running the latest raspian and have done apt-get update/upgrade
    The link you gave me is for simpleide which I have loaded and works.
    Im asking about PropellerIDE.
  • mindrobotsmindrobots Posts: 6,506
    edited 2015-04-01 11:11
    Ray,

    I've been suing this successfully. I've just been through the entire process a couple times lately, so it is up to date. You can either do A, B and C or just A & B or just A & C, depending on what you want/need.
    A) install Qt5.
    
    1) edit /etc/apt/sources.list so it contains: (sudo nano /etc/apt/sources.list)
    
    deb http://twolife.be/raspbian/ wheezy main backports
    deb-src http://twolife.be/raspbian/ wheezy main backports
    
    2) $ sudo apt-get update
    3) $ sudo apt-get upgrade
    (answer 'y' to the "install packages without verification message")
    
    4) $ sudo apt-get install libqt5-*
    (answer 'y' to the "install packages without verification" message)
    This install takes a while..........
    
    B) follow the SimpleIDE installation instructions from here learn.parallax.com http://learn.parallax.com/propeller-...de/raspberrypi
    
    -or-
    1) get the SimpleIDE package:
       $ wget https://googledrive.com/host/0B8ruEl5BL0dfZzZfdHRiX2pYNm8/SimpleIDE_0-9-45_armv6l-RaspberryPi-Linux.tar.bz2
    
    2) unzip it:
       $ bunzip2 -vv SimpleIDE_0-9-45_armv6l-RaspberryPi-Linux.tar.bz2
    
    3) extract everything from the .tar file:
       $ tar -xvf SimpleIDE_0-9-45_armv6l-RaspberryPi-Linux.tar
    
    4) $ cd SimpleIDE-0-9-45
    5) $ sudo ./setup.sh install
    
    At this point, you should have a working SimpleIDE installation. Type simpleide on the command line and it will start up the IDE.
    
    C) If you want to install PropellerIDE
    
    0) install dependencies:
      $ sudo apt-get install -y libftdi1
      $ sudo apt-get install -y libGLESv*
    
    1) go to www.lamestation.com/propelleride
    
    2) get the PropellerIDE install file either with the link on that page or copy the link and use wget (the file name will change wtih newer versions):
       $ wget https://github.com/parallaxinc/PropellerIDE/releases/download/0.25.0/propelleride-0.25.0-0-g6710db9-armhf.deb
    
    3) install PropellerIDE (the file name should be the file you just downloaded):
       $ sudo dpkg -i propelleride-0.25.0-0-g6710db9-armhf.deb  
    
    At this point, you now have a working PropellerIDE installation. Type propellerIDE onteh commadn line and it will start up the IDE.
    
    
    
    
    
    
    
  • Ray0665Ray0665 Posts: 231
    edited 2015-04-01 14:32
    Thank you sir part A did the trick.
    Thar be a working propelleride here!
Sign In or Register to comment.