Skip to content

Latest commit

 

History

History
66 lines (41 loc) · 1.7 KB

install.rst

File metadata and controls

66 lines (41 loc) · 1.7 KB

Installing vidyo

This section will go through how to install vidyo on your system.

Creating a virtual environment

A virtual environment allows you to contain a project's dependencies in a way that means no dependencies conflict with other projects. It is recommended that you create a virtual environment when working with vidyo. To do this, run the following commands:

Linux/macOS/UNIX

Windows

Installing the lastest stable version

You can install the latest version of vidyo by using the following command:

Installing other versions

To install a specific version (for example, if you want to try the newest development releases), use the following command:

Installing from source

You can also install vidyo from source if you want to. Using this method, you can use a specific branch -- such as develop -- to install a version different from the latest stable one. You can do this using the following command:

git clone https://github.com/parafoxia/vidyo
cd vidyo
git checkout develop  # ...or any branch you want
python3 -m pip install -U .