asdf-community / asdf-python

Python plugin for the asdf version manager
https://github.com/asdf-vm/asdf
MIT License
656 stars 56 forks source link

Make `python` command fall back from system to asdf version #85

Open abrac opened 3 years ago

abrac commented 3 years ago

Hi. I have python 3.9 installed in system, and 3.8 installed in asdf.

I would like the python command to use version 3.9 and the python3.8 command to use version 3.8.

I tried the following commands, but it did not work:

$ asdf global python system 3.8.6

$ python -V
Python 3.9.1

$ python3.8 -V
No python3.8 executable found for python system

Hope someone knows why the python3.8 command doesn't work.