当前位置: 首页 > 工具软件 > asdf > 使用案例 >

[系统|工具] 使用asdf-vm安装python3.6.12

连厉刚
2023-12-01

系统环境说明

系统:CentOS 7.9
平台:aarch64
CPUFT2000+

参考文献

asdf document
asdf-plugins

asdf-vm安装

多版本管理命令行工具asdf-vm安装及使用

编译依赖安装

  1. 安装gccopenssl-develsqlite-develbzip2-develreadline-devel
sudo yum install gcc openssl-devel bzip2-devel readline-devel sqlite-devel

asdf-vm安装Python

  1. 添加Python插件
asdf plugin-add python 
  1. 更改 python源代码下载地址使用国内镜像地址
    编辑~/.asdf/plugins/python/pyenv/plugins/python-build/share/python-build/3.6.12,将文件中的https://www.python.org/ftp/改成https://mirrors.huaweicloud.com/
asdf list all python
vim ~/.asdf/plugins/python/pyenv/plugins/python-build/share/python-build/3.6.12
  1. 安装Python 3.6.12
asdf install python 3.6.12
  1. 设置当前Python版本
asdf global python 3.6.12
  1. 卸载Python 3.6.12
asdf uninstall python 3.6.12
  1. 删除Python插件
asdf plugin remove python

使用

在项目目录下创建.tool-versions文件,在文件中添加以下内容

python3 3.6.12

然后在项目目录下执行以下命令查看效果

python3 -V

输出如下信息

Python 3.6.12

扩展

asdf-plugins中的插件皆可参照此方法安装。

 类似资料: