`asdf list-all erlang`不显示最新版本

问题描述 投票:0回答:1

按照此安装指南后,我尝试通过 asdf 安装 erlang OTP 22.2.8。当我查看可用版本列表时,我看到的最新版本是 v19。

R13B03
R13B04
R14A
...
19.0.1
19.0.2

系统信息:

Distributor ID: Ubuntu
Description:    Ubuntu 20.04.1 LTS
Release:        20.04
Codename:       focal

asdf-vm
1个回答
0
投票

目前官方文档指出:

asdf install erlang ref:master

export OTP_GITHUB_URL="https://github.com/basho/otp"
asdf install erlang ref:basho

有问题的命令在哪里:

export OTP_GITHUB_URL="https://github.com/basho/otp"

在终端中运行命令后,似乎官方 GitHub URL https://github.com/erlang/otp 被替换为 https://github.com/basho/otp,其中仅包含旧的版本。

至少有两个可能的修复方法:

  • 关闭当前终端并打开一个新终端
  • 奔跑
    export OTP_GITHUB_URL="https://github.com/erlang/otp" 
© www.soinside.com 2019 - 2024. All rights reserved.