View the Project on GitHub UVU-CS2450-001-Fall2020-Team2/EmpDat
Is this hard to read? View this on GitHub!
Employee Database Application for CS 2450-001 Fall 2020.
Licenses and attributions attached in the LICENSES.txt and under Help>About in the application
EmpDat was designed with Windows users in mind. However, EmpDat can be run on any operating system Python is supported on.
Portable.win.zip
to a location of choice.EmpDat.exe
Most of the steps require a terminal window.
src_w_deps.zip
.\venv\Scripts\activate.bat
pip install -r requirements.txt
python EmpDat.py
Most of the steps require a terminal window.
src.zip
pip3 install -r requirements.txt
python3 EmpDat.py
-1
Ineed2changemypassword!
A virtual environment (a shadow copy of an already installed Python) is recommended Python
git clone https://github.com/UVU-CS2450-001-Fall2020-Team2/EmpDat.git
python3 -m venv venv/
venv/Scripts/activate.bat
source venv/bin/activate
pip3 install -r requirements.txt
python EmpDat.py
Any time anything needs to be ran or installed
within the application, activate the virtual environment using
Step 3 above. Deactivation can be done with the command deactivate
.