Skip to content

Getting Started

Lauren edited this page Sep 15, 2024 · 1 revision

Getting Started

Prerequisites

Before you begin, ensure you have the following software and tools installed:

  • Python 3.x: The primary programming language used in this project.
  • pip: Python package installer.
  • Virtualenv: Tool to create isolated Python environments.
  • Git: Version control system to clone the repository.
  • Docker (optional): For running isolated environments and tools.

Installation

Follow these steps to set up the project locally:

  1. Clone the Repository
    git clone https://github.com/yourusername/malware-education.git
    cd malware-education
  2. Create a Virtual Environment
    python3 -m venv venv
    source venv/bin/activate  # On Windows use `venv\Scripts\activate`
    
Clone this wiki locally