Instructions how to install Debian using debootstrap. Below instructions were verified to work with debootstrapping Debian 11.
The list below includes 6044 deleted tweets by katherine_deves.
This report was generated by ✨cancel-culture✨, an open source project by Travis Brown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# SPDX-FileCopyrightText: 2022 FC Stegerman <[email protected]> | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
import argparse | |
import json | |
import re | |
import shlex | |
import sys |
As a workaround, you can create a global venv that acts a lot like --user
does now.
NB: this works for scripts that are part of the packages installed in the venv, but scripts that use e.g. #!/usr/bin/python3
will not be able to access the modules from the venv, only scripts called via ~/.venv/bin/python3
(or ~/.venv/bin/python
, ~/.venv/bin/python3.11
etc.) will be able to access those.
python3 -mvenv --system-site-packages --without-pip ~/.venv