/*********************************************************************** * ImportError: No module named 'commands' * 說明: * 在Python3中執行shell腳本,想要獲取其執行狀態和標准輸出、錯誤輸出 * 的數據,遇到這個錯誤,原因是commands模塊已經被subprocess取代了。 * * 2016-10-11 深圳 南山平山村 曾劍鋒 **********************************************************************/ 一、參考文檔: [SOLVED] python3 ImportError: No module named commands https://bbs.archlinux.org/viewtopic.php?id=125971 二、解決辦法: Deprecated since version 2.6: The commands module has been removed in Python 3.0. Use the subprocess module instead.
