Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

Why do you use subprocess.Popen versus os.popen?

os.popen versus
0
Posted

Why do you use subprocess.Popen versus os.popen?

0

Because windows does not play nicely with os.popen and the primer3_core binary. That being said, there remains an ‘issue’ with subprocess.Popen and py2exe, and you must call it as follows (if building the windows GUI using py2exe): p=subprocess.Popen(pathToPrimer3,shell=True,stdin=subprocess.PIPE,stdout=subprocess.PIPE,stderr=subprocess.PIPE,universal_newlines=True).

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123