GNU/Linux >> LINUX-Kenntnisse >  >> Linux

So führen Sie Python-Skripte von der Shell aus

Python ist für viele Plattformen verfügbar, einschließlich Linux und Windows. Um es für Ihr System herunterzuladen, gehen Sie zu https://www.python.org/downloads/

cPanel enthält standardmäßig Python, sodass Sie Skripts einfach ausführen können – als root oder als Benutzer .

So führen Sie Python-Skripte von der Shell aus:

1. Laden Sie das Skript herunter oder erstellen Sie die Skriptdatei. Python-Skripte haben die Dateierweiterung .py.

2. Machen Sie das Skript ausführbar mit:

# chmod +x python_sript.py

3. Führen Sie das Skript aus:

# python python_sript.py

Unser „Hello Word“-Python-Skript python_sript.py content

#! /usr/bin/python
print('Hello World!')

Bei der Ausführung wird „Hello World!“ ausgedruckt.

root@web [/temp3]# python python_sript.py
Hello World!
root@web [/temp3]# 

So prüfen Sie, wo Python auf Ihrem Server installiert ist:

# whereis python

In den meisten Fällen wird Python unter /usr/bin/python installiert

root@web [/temp3]# whereis python
python: /usr/bin/python2.7 /usr/bin/python /usr/bin/python2.7-config /usr/lib/python2.7 /usr/lib64/python2.7 /etc/python /usr/include/python2.7 /usr/share/man/man1/python.1.gz
root@web [/temp3]#

Wenn das Verzeichnis noch nicht zur PATH-Variablen hinzugefügt wurde, verwenden Sie:

# export PATH="$PATH:/usr/local/bin/python"

Linux
  1. So führen Sie ein Shell-Skript beim Start aus

  2. Führen Sie ein Shell-Skript im neuen Terminal vom aktuellen Terminal aus

  3. Wie führe ich ein Python-Skript von Java aus aus?

  4. Wie lässt sich ein Python-Skript als Dienst ausführen?

  5. Wie führe ich den Vim-Befehl von der Shell aus?

So führen Sie Python-Skripte aus

So erstellen Sie Shell-Skripte

So führen Sie ein Python-Skript in PHP aus

So führen Sie Shell-Skript als SystemD-Dienst in Linux aus

So führen Sie ein Bash-Skript aus

So erstellen und führen Sie ein Shell-Skript in Ubuntu 22.04 aus