Windows和Spyder中的Python多进程问题

python multiprocessing issue in windows and spyder(Windows和Spyder中的Python多进程问题)
本文介绍了Windows和Spyder中的Python多进程问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的学院有一个项目是关于在python中进行多处理的。在我的python项目中,我在Windows中使用Spyder。因此,我试图在Spyder中运行一个非常简单的多处理代码,但每次我运行它时,Spyder控制台都会冻结,并且永远不会结束。这是我的代码:

from multiprocessing import Pool, freeze_support
import multiprocessing

def f(i):
    return i+1

def main():
    pool = multiprocessing.Pool(4)
    result = pool.map(f, range(4))
    pool.close()
    pool.join()
    print result

if __name__ == '__main__':
    freeze_support() #you need this in windows
    main()

我注意到这是多进程和Windows中缺少分支的常见问题,因此我考虑了第16.6.3.2段。https://docs.python.org/2/library/multiprocessing.html#windows中的窗口。

我还避免从子进程打印,如下所示:Simple Python Multiprocessing function doesn't output results,而使用Return。

如果我在Unix终端上运行代码,它就可以工作,但我主要使用的是用于我的Python项目的Windows。 Windows中是否有解决此问题的解决方法?

推荐答案

经过研究后,我了解到交互式口译员和多进程处理存在问题。

https://docs.python.org/2.7/library/multiprocessing.html#introduction中指出: 注意::...某些示例(如池示例)在交互式解释器中不起作用。

一位Spyder的维护者回答说,在Spyder的IPython控制台中,多处理确实不能在Windows上很好地工作。(No multiprocessing print outputs (Spyder))

到目前为止,我找到的唯一解决办法是使用Windows cmd运行代码

这篇关于Windows和Spyder中的Python多进程问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)