Skip to content

Commit

Permalink
fix(requirements): Install packages in user space
Browse files Browse the repository at this point in the history
  • Loading branch information
qgerome committed Dec 16, 2024
1 parent 1fc3aa1 commit 6debe51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion images/base/files/scripts/bootstrap_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def run_pipeline(config):

if os.path.exists("./pipeline/requirements.txt"):
print("Installing requirements...")
os.system("pip install -r ./pipeline/requirements.txt")
os.system("pip install -r ./pipeline/requirements.txt --user")

installed, uninstalled = version_info()
if len(installed) > 0:
Expand Down

0 comments on commit 6debe51

Please sign in to comment.