Install Odatix from sources¶
Step 1: Clone the repository¶
sudo apt update
sudo apt install -y git
git clone https://github.com/jsaussereau/Odatix.git
cd Odatix/
sudo dnf update
sudo dnf install -y git
git clone https://github.com/jsaussereau/Odatix.git
cd Odatix/
sudo pacman -Syu
sudo pacman -S git --noconfirm
git clone https://github.com/jsaussereau/Odatix.git
cd Odatix/
Step 2: Install Python 3.6+ and make¶
sudo apt install -y python3 make
sudo dnf install -y python3 make
sudo pacman -S python3 make --noconfirm
Step 3: Configure a virtual environment [Optional]¶
sudo apt install -y python3-venv
# venv should be shipped with your python installation
# venv should be shipped with your python installation
# Create a virtual environment
python3 -m venv odatix_venv
# Activate the virtual environment
source odatix_venv/bin/activate # You have to run this command at every new shell session
Step 4: Install the package¶
python3 -m pip install ./sources
Step 5: Install one of the supported EDA tools¶
More information in section Install one of the supported EDA tools.