Get Started¶
It is highly recommended to install in a virtual environment to keep your system in order.
Installing with pip
(recommended)¶
The following command installs the latest version of the library:
To make the package as slim as possible, only the packages required to use aroma
are installed.
It is possible to install all the optional dependencies by running the following command:
This command installs additional packages like gdown
.
It is also possible to install the optional packages manually or to select the packages to install.
In the following example, only gdown
is installed:
Installing from source¶
To install aroma
from source, you can follow the steps below. First, you will need to
install poetry
. poetry
is used to manage and install
the dependencies.
If poetry
is already installed on your machine, you can skip this step. There are several ways to
install poetry
so you can use the one that you prefer. You can check the poetry
installation by
running the following command:
Then, you can clone the git repository:
It is recommended to create a Python 3.9+ virtual environment. This step is optional so you can skip it. To create a virtual environment, you can use the following command:
It automatically creates a conda virtual environment. When the virtual environment is created, you can activate it with the following command:
This example uses conda
to create a virtual environment, but you can use other tools or
configurations. Then, you should install the required package to use aroma
with the following
command:
This command will install all the required packages. You can also use this command to update the required packages. This command will check if there is a more recent package available and will install it. Finally, you can test the installation with the following command: