Skip to content

Latest commit

 

History

History
66 lines (37 loc) · 1.08 KB

README.md

File metadata and controls

66 lines (37 loc) · 1.08 KB

dc_design_tool

Prerequisites

  • Python 3.10.0
    Make sure you have Python 3.10.0 installed. Download it here.

Installation

  1. Clone the repository

git clone [REPO_URL]
cd [PROJECT_FOLDER]

  1. Create a virtual environment
    Linux/macOS:
    bash
    python3.10 -m venv venv

Windows:
cmd
py -3.10 -m venv venv

  1. Activate the virtual environment

Linux/macOS:
bash
source venv/bin/activate

Windows:
cmd
.\venv\Scripts\activate

  1. Install dependencies

pip install -r requirements.txt

  1. Usage
    Run the main.py

With the virtual environment activated:

python main.py

  1. Virtual Environment (Reminders)
    To exit the virtual environment:

deactivate

  1. To delete the virtual environment:

Simply remove the venv folder from your project directory.

  1. Contribution
    Ensure you use Python 3.10.0 and the virtual environment.

Install dependencies from requirements.txt.

Verify your Python version with python --version before contributing.