Skip to content

bahadirbasaran/TESTstat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Workflow for virtual environment

# Create a virtualenv with the homebrew python
python3.9 -m venv venv
 
# Activate the virtualenv
source venv/bin/activate
 
# Install the packages inside virtualenv
pip install -r requirements/gui.txt

# Run the app
python main.py

Workflow for virtual environment for M1 chip

# Create a virtualenv with the homebrew python
/opt/homebrew/bin/python3.9 -m venv --system-site-packages teststat_venv

# Install PyQT with homebrew 
brew install pyqt@5
 
# Activate the virtualenv
source teststat_venv/bin/activate
 
# Install the packages inside virtualenv
pip install -r requirements/gui_M1.txt

# Run the app
python main.py

Containerized workflow

The GitLab Docker build image installs a Python 3.9 virtual environment with all requirements and can be used locally.

docker build -t teststat -f .gitlab/Dockerfile .
docker run -v "$(pwd)":/src -it teststat

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages