Installation guide
How to install and run the software
In order to install Felon Finder and launch, multiple ways are possible.
Method 1 - Using the installer
Windows
Linux
dpkg -i Felon-Finder.deb
to unpack it and run it once it’s over.Method 2 - conda environment + pip
$ conda create --name felon-finder python=3.12.2
Warning
If for some reason you feel lost at this first step, we strongly recommend installing Miniconda and getting started with this tutorial.
$ conda activate felon-finder
$ pip install -r https://raw.githubusercontent.com/AlexandreLayous/felon-finder/main/requirements_linux.txt
$ pip install -r https://raw.githubusercontent.com/AlexandreLayous/felon-finder/main/requirements_win.txt
felonfinder
package with pip from your terminal :$ pip install felonfinder
$ pip install felonfinder[windows]
Note
Windows operated computers need one more dependency to work with the tensorflow
package.
$ felon-finder
$ felon-finder-win
Warning
Unlike its pip package, the actual Felon Finder executable contains dashes in its name !
Note
Once this setup has been done for the first time, you shouldn’t have to do it again unless you delete your conda environment or the files needed.
You will just have to activate the conda environment every time before running the software.
Method 3 - conda environment + GitHub clone
$ git clone git@github.com:AlexandreLayous/felon-finder.git
$ cd felon-finder
$ conda create --name felon-finder python=3.12.2
Warning
If for some reason you feel lost at this first step, we strongly recommend installing Miniconda and getting started with this tutorial.
$ conda activate felon-finder
$ pip install -r requirements_linux.txt
$ pip install -r requirements_win.txt
$ python FelonFinder.py
Note
Once this setup has been done for the first time, you shouldn’t have to do it again unless you delete your conda environment or the files needed.
You will just have to activate the conda environment every time before running the software.