Skip to content
New issue

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

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

Already on GitHub? # to your account

Allow pip to install on the system on Noble #69

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 4 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ apt -y install \
python3-pip \
wget

# Allowing pip to install packages in the system
mkdir -p "${HOME}/.config/pip"
echo -e '[global]\nbreak-system-packages = true' > "${HOME}/.config/pip/pip.conf"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wouldn't it be better to use venv instead? I would think it'll be more future proof.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point. I've merged #74 before read this sorry. I'm going to close this one as superseded, we can improve the existing situation in a new PR.


if [ -n "$DOXYGEN_ENABLED" ] && ${DOXYGEN_ENABLED} ; then
apt -y install doxygen
fi
Expand Down