3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

今年の振り返りAdvent Calendar 2023

Day 6

wsl(ubuntu)にasdfを導入

Last updated at Posted at 2023-12-11

はじめに

この記事は2023年度の振り返りです。

zennでも書きましたが、最近asdfを利用するようになりましたので、それについての備忘録です

インストール方法

AWS CLI インストール

インストール

sudo apt-get install -y zip
asdf plugin add awscli
asdf install awscli 2.14.4
asdf global awscli  2.14.4

確認

$ aws --version
aws-cli/2.14.4 Python/3.11.6 Linux/5.15.133.1-microsoft-standard-WSL2 exe/x86_64.ubuntu.22 prompt/off

AWS SAM CLI インストール

先にpythonが必要だったため、最新をインストール

asdf plugin add python
asdf install python 3.12.0
asdf global python  3.12.0
asdf plugin add aws-sam-cli
asdf install aws-sam-cli 1.103.0
asdf global aws-sam-cli 1.103.0
$ sam --version
SAM CLI, version 1.103.0

さいごに

rubyインストールで色々模索してasdfに行きつきましたが、aws cliまで対応してるとは驚きでした。
dockerも対応してくれると嬉しいのですけどね・・・

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?