virtualenvでPythonスクリプトをサービスとして実行する

virtualenvでPythonスクリプトをサービスとして実行する

virtualenvをサービスとして使用するPythonスクリプトを実行したいと思います。いくつかの調査をしてみましたが、効果的な解決策が見つかりませんでした。 Pythonの最初の行に仮想環境Pythonのパスを入力しました。サービスは次のとおりです。

[Unit]
Description=Telegram Bot Service
After=multi-user.target
[email protected]

[Service]
Type=simple
ExecStart=/usr/bin/python3.7 /home/pi/github/python/telegrambot.py
StandardInput=tty-force

[Install]
WantedBy=multi-user.target

間違い:

● telegrambot.service - Telegram Bot Service
   Loaded: loaded (/lib/systemd/system/telegrambot.service; enabled; vendor preset: enabled)
   Active: failed (Result: exit-code) since Tue 2020-03-03 15:04:11 GMT; 3s ago
  Process: 15090 ExecStart=/usr/bin/python3.7 /home/pi/github/python/telegrambot.py (code=ex
 Main PID: 15090 (code=exited, status=1/FAILURE)

Mar 03 15:04:11 raspberrypi systemd[1]: Started Telegram Bot Service.
Mar 03 15:04:11 raspberrypi systemd[1]: telegrambot.service: Main process exited, code=exite
Mar 03 15:04:11 raspberrypi systemd[1]: telegrambot.service: Failed with result 'exit-code'.

事前に助けてくれてありがとう!

ベストアンサー1

おすすめ記事