Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 694 Bytes

README.md

File metadata and controls

43 lines (29 loc) · 694 Bytes

TerminalCal

TerminalCal is a terminal-based application to view events from a public .ics calendar

Getting Started

  1. Clone this repository:

    git clone https://github.com/aarontorres0/TerminalCal.git
    
  2. Navigate to the project directory:

    cd TerminalCal
    
  3. Create and activate a virtual environment:

    python3 -m venv venv
    source venv/bin/activate
    
  4. Install the necessary dependencies:

    pip3 install -r requirements.txt
    
  5. Run the application:

    python3 main.py
    
  6. (Optional) To deactivate the virtual environment and remove it when you're done:

    deactivate
    rm -rf venv