Quick Start
Working with OpenAdapt
Installation
OpenAdapt requires Python3.10, you can download it here or try our installer, which will download Python for you.
First, clone & navigate to the repository:
git clone https://github.com/MLDSAI/OpenAdapt.git
cd OpenAdaptIf poetry is not installed, you can use pip to install it:
pip install poetryLastly, run these lines to setup the environment:
poetry install
poetry shell
alembic upgrade headgit clone https://github.com/MLDSAI/OpenAdapt.git
cd OpenAdapt
python3.10 -m venv .venv
source .venv/bin/activate
pip install wheel
pip install -r requirements.txt
pip install -e .
alembic upgrade headpip install openadaptDownload / Clone OpenAdapt from here, then run one of the following scripts: Windows: install_openadapt.ps1 MacOS: install_openadapt.sh
Make your first recording
To make your first recording, try the following command:
You should see the following when recording has begun:
To stop recording, focus the terminal and send CTRL+C (SIGINT). The recording is finished saving when you see something like this:
To check what the recording looks like, run python -m openadapt.visualize
Read more on openadapt.visualize.
Last updated