Back

python - install python with asdf

发布时间: 2023-02-12 08:08:00

refer to:
https://github.com/asdf-community/asdf-python

1. install asdf

1.1 sudo apt install build-essential libssl-dev zlib1g-dev \
libbz2-dev libreadline-dev libsqlite3-dev curl \
libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev

2. asdf plugin-add python

3. asdf install python 3.9.16

4. asdf global python 3.9.16

Back