followed the installation instructions with all packages and libraries from requirements.txt:
git clone https://github.com/GuidoBartoli/sherloq.git
cd sherloq/gui
sudo apt install python3-distutils python3-dev python3-testresources subversion
wget https://bootstrap.pypa.io/get-pip.py
sudo python3 get-pip.py
rm get-pip.py
sudo pip install virtualenv virtualenvwrapper
echo -e "\n# Python Virtual Environments" >> ~/.bashrc
echo "export WORKON_HOME=$HOME/.virtualenvs" >> ~/.bashrc
echo "export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3" >> ~/.bashrc
echo "source /usr/local/bin/virtualenvwrapper.sh" >> ~/.bashrc
source ~/.bashrc
mkvirtualenv sq -p python3
pip install -r requirements.txt
python3 sherloq.py
running the command python sherloq.py throws an error Illegal operation
any way to troubleshoot where the issue is coming from?

followed the installation instructions with all packages and libraries from requirements.txt:
running the command python sherloq.py throws an error Illegal operation
any way to troubleshoot where the issue is coming from?