From 771419e71da5f4dcf655fd2538c4757fe94923fa Mon Sep 17 00:00:00 2001 From: Claude Becker <becker@phys.ethz.ch> Date: Mon, 3 Mar 2025 13:17:52 +0100 Subject: [PATCH] python: pyenv command without home --- linux/workstation/python.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/workstation/python.markdown b/linux/workstation/python.markdown index 34d84ad1..125e0f4c 100644 --- a/linux/workstation/python.markdown +++ b/linux/workstation/python.markdown @@ -54,8 +54,8 @@ This creates a custom configuration `~/.local/share/jupyter/kernels/opt-software ### Use pyenv to install custom Python versions -If you want to install your own Python versions, watch out to either not source our environment, or to redirect the pyenv installation to a location, where you have write access (either the local scratch or your home folder). +If you want to install your own Python versions, watch out to either not source our environment, or to redirect the pyenv installation to a location, where you have write access (either the local scratch or some project folder on your group share). ``` -PYENV_ROOT=$HOME pyenv install <version> +PYENV_ROOT=/path/to/project pyenv install <version> ``` -- GitLab