Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated install scripts with new packages. #180

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions scripting/install_tass.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,16 @@ cd tass-ssat
@echo "CREATING CONDA ENVIRONMENT"
call conda env create -f environment.yaml
call conda activate tass_ssat-dev
cd tass-base
cd \tass-report
@echo "INSTALLING EDITABLE TASS-REPORT"
pip install -e .
cd ..\tass-base
@echo "INSTALLING EDITABLE TASS-BASE"
pip install -e .
cd ..\tass-converter
@echo "INSTALLING EDITABLE TASS-CONVERTER"
pip install -e.
pip install -e .
cd ..\tass-orchestrator
@echo "INSTALLING EDITABLE TASS-ORCHESTRATOR"
pip install -e .
@echo "INSTALLATION COMPLETED"
9 changes: 5 additions & 4 deletions scripting/install_tass.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ cd tass-ssat
conda env create -f environment.yaml
eval "$(conda shell.bash hook)"
conda activate tass_ssat-dev
cd tass-base
pip install -e .
cd ../tass-converter
pip install -e .

pip install -e tass-report
pip install -e tass-base
pip install -e tass-converter
pip install -e tass-orchestrator