Installing latest python also changes the default python3 symlink #603
Unanswered
dpetka2001
asked this question in
Q&A
Replies: 1 comment 3 replies
-
rtx doesn't "change symlinks", please read the beginner's guide to understand what rtx does and what it is used for. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
First time
rtx
user, so please bear with me if I understood something wrong. On my systempython3 -V
gives version3.10.6
. After trying to install latest python version with rtx by doingrtx install python@latest
, it installs3.11.3
but also seems to change to that version for the python3 symlink. If I trypython3 -V
afterwards it gives3.11.3
instead of3.10.6
like before rtx installation. Is this how it's supposed to work? I thought that it would just install latest version without changing thepython3
symlink as well. Thus when I would like to switch between the 2 versions, I would dortx use
orrtx use -g
accordingly if I wanted a global or local to a directory configuration. Am I missing something maybe from my understanding or is this the intended behavior? Maybe I should configure something differently, so that it doesn't change thepython3
symlink on its own when installing latest Python?Beta Was this translation helpful? Give feedback.
All reactions