# Raspberry Pi Setup

## Set up IP address

use the `ifconfig` command to retrieve the MAC address of Pi:

```
ifconfig
```

## Set up Nomachine

Use the following command to get CPU version

```
cat /proc/cpuinfo
```

And download the corresponding file from Nomachine

![](https://1287130752-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FvVJ0h2a4qMIhB1I8GdV8%2Fuploads%2Fgit-blob-b05c5e0f932e7b37fabaa0f41691df8a4ac57949%2Fimage.png?alt=media)

After download, **move the file in a desired installation directory before unzip and running the install**.

Extract the tar gz file:

```
sudo tar zxvf nomachine_7.9.2_1_armv7hl.tar.gz
```

Install:

```
sudo ./NX/nxserver --install
```

## Set up OpenCV-Python

```
pip3 install opencv-python

sudo apt install libatlas-base-dev

pip3 install --upgrade numpy

```
