Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 980 Bytes

README.md

File metadata and controls

46 lines (34 loc) · 980 Bytes

CSViewer

CSViewer is a Python-based tool designed to visualize multiple CSV files. It processes and displays data in an interactive and user-friendly GUI.

Installation

To use CSViewer, clone the repository and install the required dependencies:

git clone https://github.com/wyatthoho/csviewer.git

Initialize a virtual environment.

cd csviewer
py -m venv env

Activate the virtual environment and install required dependencies. For PowerShell, follow these steps:

# HINT: If the current PowerShell execution policy prevents 
#       activating the environment, run the following command
#       to allow script execution:
#
# `Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser`

.\env\Scripts\Activate.ps1
pip install -r .\requirements.txt

After installation, deactivate the environment:

deactivate

Running the Project

To run the project, execute the following:

.\run_in_venv.ps1