|
|
# Raspberry Pi 疑難排解指南
|
|
|
|
|
|
本指南提供運行 IoT 專案時在 Raspberry Pi 裝置上遇到的常見問題解決方案。
|
|
|
它是為遵循 IoT-For-Beginners 課程的新手設計,但對一般 Pi 開發者也很有幫助。
|
|
|
|
|
|
---
|
|
|
|
|
|
## 1. 安裝與依賴錯誤
|
|
|
|
|
|
### ❗ `ModuleNotFoundError: No module named 'xyz'`
|
|
|
當缺少必需的 Python 模組時會發生此錯誤。
|
|
|
|
|
|
**解決方法**
|
|
|
```bash
|
|
|
pip3 install <module_name>
|
|
|
|
|
|
Permission denied when running scripts
|
|
|
|
|
|
Often caused by accessing GPIO, I2C or system hardware without elevated privileges.
|
|
|
Quick fix:
|
|
|
sudo python3 script.py
|
|
|
|
|
|
Recommended fix (no sudo needed every time):
|
|
|
sudo usermod -aG gpio,i2c,spi $USER
|
|
|
sudo reboot
|
|
|
|
|
|
2. GPIO / I2C / SPI Not Working
|
|
|
❗ RuntimeError: No access to GPIO
|
|
|
|
|
|
Add user to GPIO group:
|
|
|
sudo usermod -aG gpio $USER
|
|
|
sudo reboot
|
|
|
|
|
|
❗ I2C / SPI devices not detected
|
|
|
|
|
|
Enable interfaces:
|
|
|
sudo raspi-config
|
|
|
→ Interface Options
|
|
|
→ Enable I2C / Enable SPI
|
|
|
|
|
|
Check if I2C device appears:
|
|
|
i2cdetect -y 1
|
|
|
|
|
|
3. Camera / Video Issues
|
|
|
❗ Camera not detected or fails to start
|
|
|
|
|
|
Enable camera interface:
|
|
|
sudo raspi-config
|
|
|
→ Interface Options → Camera → Enable
|
|
|
sudo reboot
|
|
|
|
|
|
Check if camera is visible:
|
|
|
vcgencmd get_camera
|
|
|
|
|
|
4. Wi-Fi / SSH / Connectivity Problems
|
|
|
| Problem | Fix |
|
|
|
| -------------------------------- | --------------------------------------------- |
|
|
|
| SSH connection refused | `sudo raspi-config → Interface Options → SSH` |
|
|
|
| Device not showing on network | Check IP using: `hostname -I` |
|
|
|
| Slow Wi-Fi / unstable connection | Prefer 2.4 GHz band, update OS |
|
|
|
| Unable to access Pi headless | Add `ssh` file to boot partition |
|
|
|
|
|
|
|
|
|
5. Performance Issues
|
|
|
Raspberry Pi running slow / laggy
|
|
|
|
|
|
Close unused applications
|
|
|
|
|
|
Reduce background services
|
|
|
|
|
|
Use Lite OS if no desktop needed
|
|
|
|
|
|
Ensure sufficient power supply (5V/3A or better)
|
|
|
|
|
|
Check CPU load:
|
|
|
top
|
|
|
htop
|
|
|
|
|
|
Storage issues:
|
|
|
sudo apt autoremove
|
|
|
sudo apt clean
|
|
|
df -h
|
|
|
|
|
|
---
|
|
|
|
|
|
<!-- CO-OP TRANSLATOR DISCLAIMER START -->
|
|
|
**免責聲明**:
|
|
|
本文件係使用 AI 翻譯服務 [Co-op Translator](https://github.com/Azure/co-op-translator) 進行翻譯。雖然我們力求準確,但請注意自動翻譯可能包含錯誤或不準確之處。原始文件的母語版本應視為權威來源。對於重要資訊,建議採用專業人工翻譯。本公司不對因使用本翻譯而產生的任何誤解或曲解負責。
|
|
|
<!-- CO-OP TRANSLATOR DISCLAIMER END --> |