element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      • Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum how to download arduino on raspberry pi
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 16 replies
  • Subscribers 679 subscribers
  • Views 2583 views
  • Users 0 members are here
  • raspberry_pi
Related

how to download arduino on raspberry pi

chiversj
chiversj over 12 years ago

I followed the instructions from the book, titled Installing Arduino in Raspian. BIG FAIL. The word electronics did not show up. I have the latest download of Wheezy. Would appreciate some help on this. Thanks Jimmy

  • Sign in to reply
  • Cancel
  • mconners
    mconners over 12 years ago

    I am not familiar with the book, but I did install the Arduino IDE on the pi and was able to communicate with the board. I assume the word "Electronics" you refer to is what you are expecting in a menu.

     

    Check to see if there is an arduino folder under /usr/share. It may be a link to arduino or could be arduino-1.0 or 1.1 whatever version you installed.

     

    Also you may have to reboot or log off/log back in to get it to show up in any of the menus.

     

    You can also type

     

    dpkg -l arduino

     

    to see if the package manager thinks it is installed.

     

    Good luck,

     

    Mike

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • mcb1
    mcb1 over 12 years ago in reply to mconners

    Is this any help.?

     

    http://wyolum.com/projects/alamode/alamode-getting-started/

     

    Mark

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • chiversj
    chiversj over 12 years ago

    I checked user/share and there is NO Arduino folder. Also did dpkg -l arduino and that too was fail. So it looks like I need to download the file in order for it to work. Thank you for your help. JCC

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • mconners
    mconners over 12 years ago in reply to chiversj

    Just to be clear, that was /usr/share not /user/share but anyway,

     

    try doing

     

    sudo apt-get install arduino

     

    at the command  line and see if that gets you the result you want.

     

    Good luck,

     

    Mike

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • chiversj
    chiversj over 12 years ago

    Mike that is where I started and I was looking for electronics in the menu and I never found it. I found a linux file for Arduino IDE on the Arduino home page/site and I am going to try and download it to the Rpi. Thanks JCC

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • chiversj
    chiversj over 12 years ago

    Mike I hit a snag. Can you tell me how to download Arduino IDE to Pi. I have all the files on my PC but do not know which goes where. Thanks JCC

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • mconners
    mconners over 12 years ago

    You don't want to dl the stuff from the arduino site. That is going to be compiled for X86, not Arm, so it won't work on your machine.

     

    You may also need to dl arduino-core

     

    sudo apt-get install arduino-core

     

    I'm not near my pi at the moment, but I can look later and see if I can walk you through it.

     

     

    Mike

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • gdstew
    gdstew over 12 years ago

    Here's what I did to get the Arduino IDE on the Raspberry Pi:

     

    sudo apt-get update

    sudo apt get install arduino

     

    The update command will make sure that you get the latest versions of all the files. If you do not do this it may not find

    some of the files and it will not install. I've had this happen to me twice now.

     

    The install command will automatically download and install all the files needed  (including arduino-core) for the Arduino IDE.

     

    After you have have done this you should see the Electronics folder in your Applications menu. The Arduino IDE should be in

    that folder.

     

    Good luck.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • chiversj
    chiversj over 12 years ago in reply to gdstew

    Mr Stewart Idid exactly that more than once and it did NOT work. Do not know why but the electronics folder does not come up. Thank you. Jimmy

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • gdstew
    gdstew over 12 years ago in reply to chiversj

    OK, let's try this, I know it looks like a lot but you will only need to do 1 or 2 (not both), and

      3 only if 1 or 2 fails:

     

    1) If you know how to use the vi editor:

     

      a. Make a backup copy first:

     

        sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak

     

      b. Edit the file:

     

        sudo vi /etc/apt/sources.list

     

      c. Add this line:

     

        deb http://mirrordirector.raspbian.org/raspbian wheezy main contrib non-free rpi

     

      d. Try the apt-get update and install again.

     

    2) If you do not know how to use vi use a graphical interface editor by:

     

      a. Make a backup copy as shown in 1a

     

      b. Assuming you are in the pi home directory (/home/pi) so you know where the file is,

          copy the sources.list file:

     

        sudo cp /etc/apt/sources.list .

     

      c. Change the ownership so you can modify it:

     

        sudo chown pi:pi sources.list

     

      d. Use any text editor you like to add the same line as in 1c

     

      e. Put the modified file back where it belongs:

     

        sudo chown root:root sources.list

     

        sudo mv sources.list /etc/apt

     

       Note:  using chown again is probably not needed if sudo is used to move it back, but

                 just in case I added the command anyway.

     

      f. Try the atp-get update and install again.

     

    3) If 1 or 2 fails

     

    Do another apt-get install and send the error output and standard output from that command to

    the file arduino.txt using this command:

     

    sudo apt-get install arduino 2>&1 arduino.txt

     

    None of the normal text output from the command will be sent to the screen so just wait until the

    command line prompt is displayed before going to the next command.

     

    Change the ownership of arduino.txt to make sure you can read and write it:

     

    sudo chown pi:pi arduino.txt

     

    Attach the arduino.txt file to an email and send it to the email address in my profile.

     

    If there is an error message in the file I should be able to find it and help fix it.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
>
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube