LoginSignup
2
2

More than 1 year has passed since last update.

2023年1月版 Raspberry Piセットアップ

Posted at
sudo apt update
sudo apt upgrate
sudo apt list –upgradable
sudo apt autoremove

sudo apt install curl

# fnm nodejsバージョン管理
curl -fsSL https://fnm.vercel.app/install | bash
source /home/genya/.bashrc
eval "$(fnm env –use-on-cd)"
fnm install 18.13.0

# 1password https://support.1password.com/install-linux/#other-distributions-or-arm-targz
curl -sSO https://downloads.1password.com/linux/tar/stable/aarch64/1password-latest.tar.gz
tar -xf 1password-latest.tar.gz
 sudo mkdir -p /opt/1Password
 sudo mv 1password-*/* /opt/1Password
sudo /opt/1Password/after-install.sh
1password

# vscode
curl -L https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor | sudo tee /usr/share/keyrings/microsoft-archive-keyring.gpg >/dev/null
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/microsoft-archive-keyring.gpg] https://packages.microsoft.com/repos/vscode stable main" | sudo tee  /etc/apt/sources.list.d/vscode.list
sudo apt update
sudo apt install code

# git 
sudo apt install git -y

# vscode でgithubログイン
# vscodeでlive shareをするときにgithubアカウントでWeb認証しようとするが
# ブラウザの起動ができないので一度キャンセルをすると認証コードがコピーできるので
# 下記にアクセスして認証コードを貼り付けて認証する
https://github.com/login/device/


2
2
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
2
2