doomedraven / Tools

Combination of different utilities, have fun!
MIT License
202 stars 96 forks source link

Fix Flare-Capa install #63

Closed ClaudioWayne closed 3 years ago

ClaudioWayne commented 3 years ago

Hallo Sir, Flare-Capa install did not work for me.

Error 1: pyhtonNotFouond

What worked for me: -> python3 setup.py install

Error 2 Repeat

What worked for me: I guess just duplicated code -> delete

doomedraven commented 3 years ago

ah good catch, my bad c&p as always ahahah, thank you

doomedraven commented 3 years ago

fixed second part with this

# pip3 install flare-capa fails for me
    cd /tmp || return
    if [ ! -d /tmp/capa ]; then
        git clone --recurse-submodules https://github.com/fireeye/capa.git
    fi
    cd capa || return
    git pull
    git submodule update --init rules
    python3 setup.py install
doomedraven commented 3 years ago

FYI python3 setup.py install i don't suggest you yo use that, as it will end in cleanup problem later on updates, use pip3 install . that will be managed by pip just fine, i just spot that i have to fix my code now lol

ClaudioWayne commented 3 years ago

thx for info

doomedraven commented 3 years ago

always welcome, thanks for fix