我试图过早终止某个功能,但其余程序正常运行。我不允许更改该功能的行为。
我尝试将函数放入进程中(使用多处理python库)并终止该进程。但是,我从信号库中得到了一个错误。我相信这是因为Terminate()函数不会终止父进程的子进程,但是我不确定。
对于我如何解决此问题或新方法的任何帮助,将不胜感激。
def train(self):
import reaver as rvr
env = rvr.envs.SC2Env(map_name='MoveToBeacon')
agent = rvr.agents.A2C(env.obs_spec(), env.act_spec(), rvr.models.build_fully_conv, rvr.models.SC2MultiPolicy, n_envs=4)
agent.run(env)
def run(self):
import multiprocessing
p = multiprocessing.Process(target=self.train, args=())
p.start()
import time
time.sleep(120)
p.terminate()
p.join()
print("hello) # agent.run(env) shouldn't be running here
run()
以下是我收到的错误消息。理想情况下,输出将只是“ hello”。
Traceback (most recent call last):
File "signal.py", line 42, in <module>
trainingHelper.run()
File "signal.py", line 34, in run
p.terminate()
File "/home/user/miniconda3/lib/python3.6/multiprocessing/process.py", line 116, in terminate
self._popen.terminate()
File "/home/user/miniconda3/lib/python3.6/multiprocessing/popen_fork.py", line 56, in terminate
os.kill(self.pid, signal.SIGTERM)
AttributeError: module 'signal' has no attribute 'SIGTERM'
答案 0 :(得分:2)
我相信问题是您调用了文件signal.py,尝试重命名它,并且代码应该可以工作。该信号也是一个有冲突的python模块。