Skip to content

Installation

software-next edited this page Nov 25, 2024 · 18 revisions

Clone Tactigon SDK

  1. Open this link with a new tab Tactigon-SDK GitHub and copy the URL for HTTPS.

3

  1. Open the Command Line for Windows or Terminal for Mac/Linux and run the following command.
git clone https://github.com/TactigonTeam/Tactigon-SDK.git

4

  1. Navigate to the Tactigon SDK folder and open the project with your favorite code editor.

image

Create Virtual Environment

It is recommended to create a dedicated python virtual environment and install the packages into the virtual environment:

To create a virtual environment, run the following code.

python -m venv venv

If your operating system is MacOS or Linux you can activate the virtual environment by running this command.

source venv/bin/activate

For Windows users, you can execute this command to activate the Virtual Environment.

.\venv\Scripts\activate

Depending on your installation (Linux, Raspberry, Mac users) you may need to use python3 and pip3 instead of python and pip respectively

Install Tactigon packages

You can install all the Tactigon libraries into your Virtual Environment.

pip install tactigon-gear
pip install tactigon-speech
pip install tactigon_arduino_braccio

Back to Home

Clone this wiki locally