Skip to content

Instantly share code, notes, and snippets.

@BrianAker
Created August 21, 2024 22:50
Show Gist options
  • Select an option

  • Save BrianAker/519873b06575a11de3f589092a360936 to your computer and use it in GitHub Desktop.

Select an option

Save BrianAker/519873b06575a11de3f589092a360936 to your computer and use it in GitHub Desktop.
Install a python environment on Truenas Scale. Truenas Scale installs a broken Linux environment, on purpose, the following will allow you to setup python environments inspire of this.
python -m venv . --without-pip --system-site-packages
source ./bin/activate
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
rm get-pip.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment