程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

nohup 運行python程序不能導包

編輯:Python

在服務器上 python nohup運行無法導包,無法後台掛起運行
編輯了一個文件test_nohup.py:

import numpy as npimport foliuma = np.array([[1,2],[3,4]])print(a)

運行:
不加nohup,python3 test_nohup.py
[[1 2]
[3 4]]

2.加nohup,nohup python3 test_nohup.py > file.log 2>&1 &

nohup: ignoring input
Traceback (most recent call last):
File "test_nohup.py", line 2, in
import folium
ModuleNotFoundError: No module named 'folium'

我安裝了folium庫,但是不能nohup運行,這是什麼問題呢?


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved