Skip to content

Installing Accera on Ubuntu

Installing on Ubuntu

Install dependencies

Accera requires the following tools and libraries for building the generated code:

  • A C++ compiler, such as GCC 8
  • Python 3.7 or newer
  • OpenMP 5, if using parallelization

Ubuntu 20.04 is recommended. A quick way to start is to use a new Docker container for Ubuntu 20.04:

docker run -v $PWD:/code -it --entrypoint "/bin/bash" ubuntu:focal

Install Accera's dependencies:

apt update
apt-get install gcc-8 g++-8 python3 python3-pip libncurses5

Install the optional dependency if using parallelization:

apt-get install libomp-11-dev

Install Accera

The accera Python package can be installed from PyPI:

pip install accera

Last update: 2023-04-17