Skip to content

Installation

Tarun Sharma edited this page Aug 29, 2024 · 1 revision

Installation

Follow these steps to install the Python Code Quality Analyzer.

Prerequisites

  • Python 3.x
  • Pip (Python package installer)

Steps

  1. Clone the repository:

    git clone https://github.com/your-username/python-code-quality-analyzer.git
    cd python-code-quality-analyzer
  2. Set up a virtual environment:

    python -m venv venv
    source venv/bin/activate  # On Windows: venv\Scripts\activate
  3. Install dependencies:

    pip install -r requirements.txt

Now you're ready to start using the Python Code Quality Analyzer!

Clone this wiki locally