python3系のMotionEyeをインストールするやり方に
Dropboxにアップロードする方法を追記した。
元ネタ(ありがとうございます)
https://github.com/motioneye-project/motioneye/tree/dev#installation
入れたやつ
- Raspberry Pi 3 Model A Plus Rev 1.0
- Debian Bullseys
1.Python 3.7 以降をインストールし、依存関係を構築する
- sudo apt update
- sudo apt –no-install-recommends install ca-certificates curl python3 python3-distutils
2.Python パッケージ マネージャーpipをインストールする
- curl -sSfO ‘https://bootstrap.pypa.io/get-pip.py’
- sudo python3 get-pip.py
- rm get-pip.py
3.piwheels.orgのコンパイル済みのものを使用するように構成
- printf ‘%b’ ‘[global]\nextra-index-url=https://www.piwheels.org/simple/\n’ | sudo tee /etc/pip.conf > /dev/null
4.motioneyeのインストールとセットアップ&起動
- sudo python3 -m pip install ‘https://github.com/motioneye-project/motioneye/archive/dev.tar.gz’
- sudo motioneye_init
5.動作確認
- sudo systemctl status motioneye
- http://Raspberry pi IPアドレス:8765/
6.アップグレード
- sudo systemctl stop motioneye
- sudo python3 -m pip install –upgrade –force-reinstall –no-deps ‘https://github.com/motioneye-project/motioneye/archive/dev.tar.gz’
- sudo systemctl start motioneye
7.raspberry pi camera v2など古いやつはmotionの入れ直しが必要
- wget https://github.com/Motion-Project/motion/releases/download/release-4.5.1/bullseye_motion_4.5.1-1_armhf.deb
- sudo dpkg -r motion
- sudo dpkg -i bullseye_motion_4.5.1-1_armhf.deb
- sudo reboot
motion動作確認
ps aux | grep motion
8.Dropboxへアップロードができん!問題解決
以上、参考まで