LoginSignup
0
0

RaspberryPi with Python環境のアップデートコマンドまとめ

Last updated at Posted at 2023-03-04

Python ライブラリアップデート

pip-review --auto

pip-reviewが使えなかった場合

pip3 freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs pip3 install -U pip

RaspberryPi ディストリビューション、ライブラリ、ファームウェアアップデート

sudo apt update
sudo apt -y upgrade
sudo apt dist-upgrade -y
sudo rpi-update
sudo apt autoremove -y
sudo reboot
0
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
0
0