在服務器上 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運行,這是什麼問題呢?