Project

General

Profile

Actions

Installation » History » Revision 6

« Previous | Revision 6/24 (diff) | Next »
Rafael Bailon-Ruiz, 2020-10-06 14:58
replace apt-get by apt


Installation

This is a quick tutorial on how to install CAMS on your computer. Instructions are different depending on your needs: If a you are a regular user proceed with the Regular user installation process; and if you are a developer, follow the Developer installation process.

In any case, CAMS server requires a PC running a recent GNU/Linux operating system, preferably Ubuntu 18.04 or 20.04. Windows and MacOS are not supported. On the contrary, access to the graphical user interface is possible from any device running a modern web browser.

Regular user installation process

This guide assumes you are using Ubuntu 18.04. If you are using another operating system make sure that Python 3.5 or later is installed.

Paparazzi framework

First, install the Paparazzi framework using the one-liner installation process. If you are not an Ubuntu user follow the OS specific instructions.

Add the environment variables PAPARAZZI_HOME and PAPARAZZI_SRC to your command line interpreter. The code below should work for most users if you used the one-liner installation:

echo "export PAPARAZZI_HOME=~/paparazzi" >> ~/.bashrc
echo "export PAPARAZZI_SRC=~/paparazzi" >> ~/.bashrc

Otherwise, you can find more information here.

CAMS

Make sure that curl is installed:

apt install curl

Make sure that redis is installed:

apt install redis-server

Make sure that curl is installed:

apt install curl

Install pip3 and update it:

apt install python3-pip
pip3 install --user --upgrade pip

If you want to update it for all users:

pip3 install --upgrade pip

For now the easiest way to install CAMS is to clone the git repository of the graphical user interface and run its installation script.

git clone ssh://git@redmine.laas.fr/laas/users/simon/nephelae/nephelae-devel/nephelae_gui.git nephelae_gui
cd nephelae_gui
make install pip_options=--user

To check the installation, launch the server:

make demo

This will (hopefully) start the replay of a UAV flight.

You should now be able connect to the graphical user interface with your web browser on http://0.0.0.0:8000/.

Developer installation process

System requirements

The main programming language is Python 3.5. Official support for Python 2.7 ending by the beginning of 2020, no development efforts were made to support Python 2.7.

Most of development and testing where made on Ubuntu 16.04 LTS Xenial Xerus on which Python 3.5 is the default Python version.

All server side applications should work on a Unix-based system provided it supports Python 3.5 or later. Compatibility with Microsoft Windows has not been tested.

The client side application is web-based and should work on a modern web browser. (Only tested with Mozilla Firefox and Safari).

Paparazzi framework

Make sure that curl is installed:

apt install curl

System dependencies (for Ubuntu 16.04)

add-apt-repository ppa:team-gcc-arm-embedded/ppa
apt update
apt install gcc-arm-linux-gnueabi gcc-arm-none-eabi
add-apt-repository ppa:paparazzi-uav/ppa
apt update
apt install paparazzi-dev paparazzi-jsbsim

System dependencies (for Ubuntu 18.04)

apt install gcc-arm-none-eabi
add-apt-repository ppa:paparazzi-uav/ppa
apt update
apt install paparazzi-dev paparazzi-jsbsim

Repository
git clone -b laas_master https://github.com/pnarvor/paparazzi.git paparazzi
cd paparazzi
make

LAAS-Nephelae software needs the environment variables PAPARAZZI_HOME and PAPARAZZI_SRC to be set to the root paparazzi folder (where you cloned it). Add these lines to your .bashrc, replacing "paparazzi_path" to where you cloned paparazzi repository.

export PAPARAZZI_HOME="paparazzi_path" 
export PAPARAZZI_SRC="paparazzi_path" 

Once Paparazzi installed, launch ./paparazzi. In the paparazzi center, build every aircraft you need to use by selecting an item in the A/C menu and then clicking on the build button.

CAMS

Install pip3 and update it:

apt install python3-pip
pip3 install --user --upgrade pip

If you want to update it for all users:

pip3 install --upgrade pip

Clone and install the 3 core packages (in developer mode with the -e pip3 option):

nephelae_base.

git clone git://redmine.laas.fr/laas/users/simon/nephelae/nephelae-devel/nephelae_base.git nephelae_base
cd nephelae_base
pip3 install --user -e .

nephelae_mesonh.

git clone git://redmine.laas.fr/laas/users/simon/nephelae/nephelae-devel/nephelae_mesonh.git nephelae_mesonh
cd nephelae_mesonh
pip3 install --user -e .

nephelae_paparazzi.

git clone git://redmine.laas.fr/laas/users/simon/nephelae/nephelae-devel/nephelae_paparazzi.git nephelae_paparazzi
cd nephelae_paparazzi
pip3 install --user -e .

Make sure that redis is installed:

apt install redis-server

Clone and install the nephelae_gui package in developer mode:

git clone git://redmine.laas.fr/laas/users/simon/nephelae/nephelae-devel/nephelae_gui.git nephelae_gui
cd nephelae_gui
make install pip_options=--user install_mode=dev

To check the installation, launch the server:

make demo

This will (hopefully) start the replay of a UAV flight.

You should now be able connect to the graphical user interface with your web browser on http://0.0.0.0:8000/.

Updated by Rafael Bailon-Ruiz over 3 years ago · 6 revisions