Autocycle is hacklab's first major project to develop an autonomous riderless bike.
- Python 3.10 or higher
- pip (Python package installer)
-
Clone the repository:
git clone https://github.com/uconn-hacklab/autocycle.git cd autocycle
-
Create and activate a virtual environment (optional but recommended):
python -m venv venv source venv/bin/activate # On Windows, use `venv\Scripts\activate`
-
Install the project and its dependencies:
pip install -e .
This command uses the
pyproject.toml
file to install all necessary dependencies.
For development, you can install additional tools by including the dev
extra:
pip install -e .[dev]
This will install development tools specified in the pyproject.toml
file.
This project is licensed under the MIT License. See the LICENSE file for details.