Image Based Malware Classification Project

User Manual:

  1. Clone this repo to your local machine.
  2. Create venv in the project and ACTIVATE the venv by running the activate file through cmd..
  3. Install all dependencies by installing the requirements.txt file.
  4. Run data_organizer_automation.py file.

Create venv in the project:

Don't forget to ACTIVATE venv by running the activate file through cmd.

python -m venv venv
        or 
python3 -m venv venv

How to create & install requirements.txt:

1. Create:

pip list --format=freeze > requirements.txt
        or
pip3 list --format=freeze > requirements.txt

2. Install:

pip install -r requirements.txt
        or
pip3 install -r requirements.txt