Skip to content

Commit

Permalink
Sonar upgrade POC - Install, create and activate the virtual environment
Browse files Browse the repository at this point in the history
  • Loading branch information
lindanasredin committed Aug 15, 2023
1 parent 60a3e9c commit f50f014
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
#!/bin/bash

# TODO install/create/activate the virtual environment
# Install, create and activate the virtual environment
pip3 install virtualenv
python3 -m virtualenv lenv
source lenv/bin/activate

pip install -r ${path}/python_upgrader/requirements.txt
pip3 install -r ${path}/python_upgrader/requirements.txt

python3 -u ${path}/python_upgrader/main.py \
--target_version "${target_version}" \
Expand Down

0 comments on commit f50f014

Please sign in to comment.