Forum Rule: Always post complete source code & details to reproduce any issue!
Results 1 to 7 of 7

Thread: teensyduino linux installer issue

  1. #1
    Junior Member
    Join Date
    May 2018
    Posts
    6

    teensyduino linux installer issue

    I am having a technical problem using the teensyduino installer for linux. When I am at 'Select Arduino Folder' part of the install it does not recognize the arduino folder and the 'next' button is grayed out. How do I get past this?

    Thanks.
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	Screenshot from 2020-08-24 16-14-38.png 
Views:	56 
Size:	33.6 KB 
ID:	21464  

  2. #2
    Senior Member PaulStoffregen's Avatar
    Join Date
    Nov 2012
    Posts
    27,695
    Quote Originally Posted by t-rowe View Post
    How do I get past this?
    Download a fresh copy of Arduino from Arduino's website:

    https://www.arduino.cc/en/Main/Software

    Extract it. But DO NOT extract it inside of that Arduino folder (which looks like the place you save *your* programs). Put it in a different location, and remember where.

    Then run the installer again and select that location. The "Next" button will activate when you select any location which contains a supported copy of the Arduino software.

    If you want to know *why* the installer isn't activating the "Next" button, click the small "?" button. But ultimately the answer is the same. You need to have a supported copy of the Arduino software and select the location where the software is installed, not the location where it would save the programs you write.

  3. #3
    Senior Member+ KurtE's Avatar
    Join Date
    Jan 2014
    Posts
    11,462
    How did you install the Linux version of Arduino? if you did something like sudo apt-get install Arduino... This type of Arduino won't work.

    Also I don't see anything here in your email on what version of Arduino nor which version of Teensyduino.

    If the current latest release, it is only supported on specific versions of Arduino:
    Teensyduino 1.53 supports Arduino versions 1.8.5 and 1.8.9 and 1.8.11 and 1.8.12 and 1.8.13.
    Future versions of Teensyduino will drop support for Arduino 1.8.11
    On Windows, the Arduino installer and ZIP are supported, but the "app" is not.
    Windows 10 provides much better USB support than Windows 7, 8 & XP.
    On Linux, PJRC tests X86 & AARCH64 on Ubuntu and ARM32 on Raspbian. Other distros may work, but are not supported.

  4. #4
    Senior Member brtaylor's Avatar
    Join Date
    Mar 2016
    Location
    Santa Fe, NM
    Posts
    814
    Quote Originally Posted by t-rowe View Post
    I am having a technical problem using the teensyduino installer for linux. When I am at 'Select Arduino Folder' part of the install it does not recognize the arduino folder and the 'next' button is grayed out. How do I get past this?

    Thanks.
    That looks like your documents folder - i.e. where you would make sketches and install libraries. Teensyduino is asking for the install location of the arduino program. Typically this would be in something like /usr/local/arduinoXX where XX would be the arduino version number.

  5. #5
    Junior Member
    Join Date
    May 2018
    Posts
    6
    Thanks for the replies. You provided the help I needed.

    T

  6. #6
    Is it possible to grab the Arduino IDE with Teensyduino already mixed in from https://github.com/PaulStoffregen/Ar...13-Teensyduino for Linux command line only? Unable to run X server, so no GUI installer possible.

    Would appreciate copy/paste commands to get it up and running. That could go right in the README.md

  7. #7
    Senior Member PaulStoffregen's Avatar
    Join Date
    Nov 2012
    Posts
    27,695
    Quote Originally Posted by slomobile View Post
    Unable to run X server, so no GUI installer possible.
    Try this:

    Code:
    wget https://downloads.arduino.cc/arduino-1.8.13-linux64.tar.xz
    wget https://www.pjrc.com/teensy/td_153/TeensyduinoInstall.linux64
    wget https://www.pjrc.com/teensy/49-teensy.rules
    sudo cp 49-teensy.rules /etc/udev/rules.d/
    tar -xf arduino-1.8.13-linux64.tar.xz
    chmod 755 TeensyduinoInstall.linux64
    ./TeensyduinoInstall.linux64 --dir=arduino-1.8.13
    cd arduino-1.8.13
    And if you want to compile with the makefile, add this:

    Code:
    cd hardware/teensy/avr/cores/teensy4
    make
    This is for Linux on x86 64 bit. For the other linux architectures, replace "linux64" with "linux32" or "linuxarm" or "linunxaarch64".

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •