multiprocessing进程开发RuntimeError
2019-01-22 02:01:09来源:博客园 阅读 ()
windows环境下multiprocessing报如下异常信息:
RuntimeError:
An attempt has been made to start a new process before the
current process has finished its bootstrapping phase.
This probably means that you are not using fork to start your
child processes and you have forgotten to use the proper idiom
in the main module:
if __name__ == '__main__':
freeze_support()
...
The "freeze_support()" line can be omitted if the program
is not going to be frozen to produce an executable.
解决办法:
在启进程的代码前面添加 if __name__ == "__main__":
代码如下:
import multiprocessing as mp import os import time def th1(): print("this is th1,the time is {0}".format(time.ctime())) #getppid获取父进程ID, getpid获取当前进程ID print("th1",os.getppid(), "---", os.getpid()) def setproc(): p1 = mp.Process(target = th1) p1.start() print("main", os.getppid(), "---", os.getpid()) if __name__ == "__main__": #p1 = mp.Process(target = th1) #p1.start() setproc() print("main end")
原文链接:https://www.cnblogs.com/exhui/p/10298921.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:我的Python分析成长之路11
下一篇:一分钟搞懂你的博客为什么没人看
- Python连载30-多线程之进程&线程&线程使用 2019-08-13
- python 之 前端开发(form标签、单选框、多选框、file上传文 2019-08-13
- python多线程同步实例分析 2019-08-13
- xpath+多进程爬取八零电子书百合之恋分类下所有小说。 2019-08-13
- python 之 前端开发(HTTP协议、head标签、img标签、a标签、 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash