We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Raspbian Bookworm has a new policy for handling pip that makes the current bootstrap script fail.
I believe we should adapt to the policy described here: https://www.raspberrypi.com/documentation/computers/os.html#using-pip-with-virtual-environments
As far as I can tell, this means that bootstrap should be changed to run python -m venv --system-site-packages ~/.env
And the update of .bashrc should have this line added: source ~/.env/bin/activate
The text was updated successfully, but these errors were encountered:
robertjensen
No branches or pull requests
Raspbian Bookworm has a new policy for handling pip that makes the current bootstrap script fail.
I believe we should adapt to the policy described here:
https://www.raspberrypi.com/documentation/computers/os.html#using-pip-with-virtual-environments
As far as I can tell, this means that bootstrap should be changed to run
python -m venv --system-site-packages ~/.env
And the update of .bashrc should have this line added:
source ~/.env/bin/activate
The text was updated successfully, but these errors were encountered: