Skip to content

greatroboticslab/3DAI

Repository files navigation

Requirments

Docker

Getting Started

1. Clone the repository

git clone https://github.com/greatroboticslab/3DAI
cd 3DAI

2. Set up a Python virtual environment

Windows

python -m venv venv  # Creates a new virtual environment in the current folder named "venv"
venv\Scripts\activate  # Activates the virtual environment

Linux / macOS

python3 -m venv .venv  # Same as Windows; the dot makes the folder hidden on Linux
source .venv/bin/activate # Activates the virtual environment

3. Install dependencies

pip install -r requirements.txt  # Installs all required packages

4. Create Environment File

cp enviroment.example .env

5. Start Database and API

docker compose up -d

7. Start Capture Tool

python3 capture_tool.py

8. Verify API is Running

http://localhost:8000/docs

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors