Created
August 21, 2024 22:50
-
-
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.
This file contains hidden or 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
| 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