要在树莓派上运行Python命令,请按照以下步骤操作:
python3 --version
如果未安装Python,请使用以下命令之一安装:
对于基于Debian的系统(如Raspbian):
sudo apt-get update
sudo apt-get install python3
对于基于armhf的系统(如Raspbian Lite):
sudo apt-get update
sudo apt-get install python3-minimal
python3 script.py
其中script.py
是您要运行的Python脚本文件。如果未指定文件名,Python将启动交互式解释器。
python3 script.py &
ps aux | grep python3
kill [process_id]
将[process_id]
替换为您要停止的进程的实际ID。