Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 717 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 717 Bytes

PythonPortfolio

Purpose of this repository is to get myself working on GitHub, and to become familiar saving, editing, and working out of it.

This portfolio will house all my python examples, scripts, and software related to my practice with Python.

Setup Instructions

  1. Clone the repository:

    git clone https://github.com/Drtrider/PythonPortfolio.git
  2. Create a virtual environment:

    python -m venv .venv
  3. Activate the virtual environment:

    • On Windows:
      .venv\Scripts\activate
    • On macOS/Linux:
      source .venv/bin/activate
  4. Install dependencies:

    pip install -r requirements.txt