当我在Mac OSX命令行上使用python执行以下操作时:
>>> from concurrent.futures import ProcessPoolExecutor我得到了
ModuleNotFoundError: No module named 'concurrent.futures'; 'concurrent' is not a packagepython --version使用Virtualenvs给出了3.6.0,我已经做了pip3 install asyncio和pip3 install futures。
发布于 2017-01-22 05:06:26
您的项目中可能有一个名为concurrent.py的文件:-)
https://stackoverflow.com/questions/41752996
复制相似问题