You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
requirements.txt for MsgParser only contains cortexutils, but it seems that olefile is also needed.
After running pip install for each requirements.txt file, MsgParser complains that module olefile does not exist:
{
"errorMessage": "Error: Invalid output\nTraceback (most recent call last):\n File \"./parse.py\", line 7, in <module>\n from lib.msgParser import Message\n File \"/opt/cortex/Cortex-Analyzers/analyzers/MsgParser/lib/msgParser.py\", line 28, in <module>\n import olefile as OleFile\nImportError: No module named olefile\n",
"input": null,
"success": false
}
Steps to Reproduce
Install cortex (from .deb file)
Clone analyzers
Run pip install -r requirements for MsgParser analyzer.
Launch an analysis for MsgParser from web.
Possible Solutions
Either manually running pip install olefile or adding olefile to requirements.txt
The text was updated successfully, but these errors were encountered:
Request Type
Bug
Work Environment
N/A
Description
requirements.txt for MsgParser only contains
cortexutils
, but it seems thatolefile
is also needed.After running pip install for each requirements.txt file, MsgParser complains that module
olefile
does not exist:Steps to Reproduce
Possible Solutions
Either manually running
pip install olefile
or addingolefile
to requirements.txtThe text was updated successfully, but these errors were encountered: