Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lahcenezzara/raspberry-pi
Raspberry Pi
https://github.com/lahcenezzara/raspberry-pi
Last synced: 4 days ago
JSON representation
Raspberry Pi
- Host: GitHub
- URL: https://github.com/lahcenezzara/raspberry-pi
- Owner: LahcenEzzara
- License: mit
- Created: 2024-04-24T03:32:16.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-04-30T02:42:01.000Z (7 months ago)
- Last Synced: 2024-04-30T03:36:48.121Z (7 months ago)
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Raspberry Pi Commands
This README file contains a collection of useful commands for Raspberry Pi.
## Raspberry Pi Documentation
[https://www.raspberrypi.com/documentation/](https://www.raspberrypi.com/documentation/)## Show IP Address
```bash
ifconfig
```## Update & Upgrade Raspberry Pi
```bash
sudo apt update && sudo apt upgrade
```## Python
[Using pip with virtual environments](https://www.raspberrypi.com/documentation/computers/os.html#using-pip-with-virtual-environments)
### Activate your Virtual Environment
```bash
source env/bin/activate
```