问题
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