When running the installer script, I encountered an issue installing components from requirements.txt.
Specifically, the fireeye-capa package (line 39) requires vivisect, which requires pyqtwebservice, which would cause the failure.
Instead of the normal pip3 install -r requirements.txt invocation, I wound up installing the required components like this: cat ./CAPEv2/requirements.txt | sed -e '/^\s*#.*$/d' -e '/^\s*$/d' | xargs -n 1 pip3 install.
When running the installer script, I encountered an issue installing components from requirements.txt.
Specifically, the
fireeye-capa
package (line 39) requiresvivisect
, which requirespyqtwebservice
, which would cause the failure.Instead of the normal
pip3 install -r requirements.txt
invocation, I wound up installing the required components like this:cat ./CAPEv2/requirements.txt | sed -e '/^\s*#.*$/d' -e '/^\s*$/d' | xargs -n 1 pip3 install
.