Skip to content

Installation

ian w edited this page Jul 17, 2023 · 15 revisions

Windows

Dependencies:

Run in PowerShell:

python3 -m pip install hydrusvideodeduplicator

You should now be good to go. Proceed to usage.

Linux

Steps are written for Ubuntu, but it should work on any popular distro.

Dependencies:

  • Python >=3.10

Steps:

  1. Update
sudo apt-get update && sudo apt-get upgrade
  1. Install dependencies:
sudo apt-get install -y python3-pip
  1. Install program:
pip install hydrusvideodeduplicator

You should now be good to go. Proceed to usage.

macos

Same directions as Linux and Windows but using your preferred package manager (brew?).



Development

Regular users don't need to read further.

  1. Clone or download the repository.
git clone https://github.com/hydrusvideodeduplicator/hydrus-video-deduplicator.git
  1. Install local editable package with pip and venv.
cd hydrus-video-deduplicator
python3 -m venv venv
source venv/bin/activate
pip install -e .

  1. Now if you run python3 -m hydrusvideodeduplicator there should be no errors.
Clone this wiki locally