Skip to content

Commit

Permalink
Allow to install packages from pip
Browse files Browse the repository at this point in the history
Pass --break-system-packages such that packages from
pip can be used inside of the box
  • Loading branch information
schaefi committed Sep 5, 2024
1 parent 68195cd commit 9c84417
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boxes/images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ import_box_overlay_files
import_box_environment

if [ -n "${kiwi_version}" ]; then
if ! pip3 install kiwi=="${kiwi_version}"; then
if ! pip3 install --break-system-packages kiwi=="${kiwi_version}"; then
exit 1
fi
fi
Expand Down

0 comments on commit 9c84417

Please sign in to comment.