有这个终端命令,如果我运行@Injectable()
export class CoachListingService {
private rowsSubject = new Subject<Array<Array<Coach>>>();
private _rows$ = this.rowsSubject.asObservable();
getRows$() {
return this._rows$;
}
setRows(rows: Array<Array<Coach>>) {
this.rowsSubject.next(rows);
}
}
,它可以正常工作..
当我尝试将其合并到python脚本中时,如下所示:
someCommand my_file.txt
我收到了以下错误提示:
import os
os.system('someCommand /user_data/some_file.txt')
尝试使用Traceback (most recent call last):
File "/server/scripts/someCommand", line 6, in <module>
import os
ImportError: No module named os
,但同样的错误仍然存在。我该如何纠正这个问题,为什么发生subprocess
模块错误?
在我的python文件中,os
正在运行..