在cmd 中输入:echo process1 = subprocess.Popen(command1,stdout=subprocess.PIPE,shell=True)
然后找到:subprocess.py文件
在class Popen(object):中的__init__里面把shell=False修改为shell=True
shell=False
shell=True