# Setting up node

**URL:** https://forum.algorand.co/t/setting-up-node/5146
**Category:** General
**Created:** [November 21, 2021, 5:20pm UTC](https://forum.algorand.co/t/setting-up-node/5146 "2021-11-21T17:20:04Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![boytigas](https://avatars.discourse-cdn.com/v4/letter/b/f6c823/32.png) [@boytigas](https://forum.algorand.co/u/boytigas)
#### Post date: [November 21, 2021, 5:20pm UTC](https://forum.algorand.co/t/setting-up-node/5146/1 "2021-11-21T17:20:04Z")

</div>

New to this and trying to install algorand node on my spare raspberry pi 4b on Ubuntu Desktop 21.10. I followed the instructions on the algorand developer portal (i can only put 2 links).

sudo apt-get update  
sudo apt-get install -y gnupg2 curl software-properties-common  
curl -O [https://releases.algorand.com/key.pub](https://releases.algorand.com/key.pub)  
sudo apt-key add key.pub  
sudo add-apt-repository “deb [arch=amd64] [https://releases.algorand.com/deb/](https://releases.algorand.com/deb/) stable main”  
sudo apt-get update

But when I type or copy the:  
sudo apt-get install -y algorand-devtools

sudo apt-get install -y algorand-devtools  
Reading package lists… Done  
Building dependency tree… Done  
Reading state information… Done  
E: Unable to locate package algorand-devtools

any ideas?

thanks.

---

<div class="post-metadata">

### Author: ![fabrice](https://avatars.discourse-cdn.com/v4/letter/f/5fc32e/32.png) [@fabrice](https://forum.algorand.co/u/fabrice)
#### Post date: [November 22, 2021, 3:50pm UTC](https://forum.algorand.co/t/setting-up-node/5146/2 "2021-11-22T15:50:51Z")

</div>

For raspberry Pi, you need to follow those instructions:

> **[Install a node - Algorand Developer Portal](https://developer.algorand.org/docs/run-a-node/setup/install/#installing-on-linux)**

The instructions you followed are for `arch=amd64`, which Raspberry is ARM.

---

<div class="post-metadata">

### Author: ![boytigas](https://avatars.discourse-cdn.com/v4/letter/b/f6c823/32.png) [@boytigas](https://forum.algorand.co/u/boytigas)
#### Post date: [November 23, 2021, 9:49pm UTC](https://forum.algorand.co/t/setting-up-node/5146/3 "2021-11-23T21:49:02Z")

</div>

Thank you so much, my bad .
