ModuleNotFoundError: No module named 'popen2' (How can i install popen2?)

依然范特西╮ 提交于 2021-02-05 09:41:27

问题


I'm using python 3.6 and triying to import pyvb. But when i typed import pyvb, this error occured:

no module named popen2

I couldn't find how to install "popen2". Instead, i did this: pip install popen. But it didn't work for me. How can i install popen2?


回答1:


This module has been deprecated since version 2.6. You have to use subprocess module now. For migrating you can also use this



来源:https://stackoverflow.com/questions/43582775/modulenotfounderror-no-module-named-popen2-how-can-i-install-popen2

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!