I seem to have run into a problem when using Spyder to execute a gsissh command (through popen()). The command is like the following: gsissh -C remote.stuff 'ls /home/username/*.dat'
I have run the same script from ipython in the terminal and even from an ipython notebook in my firefox browser. In both cases it works just fine. However, when I run the same code from Spyder, the stdout is empty and the following is printed to stderr: OpenSSL version mismatch. Built against 1000005f, you have 1000106f The way I call my command in python: from subprocess import Popen, PIPE p = Popen(command, stdout=PIPE, stderr=PIPE,shell=True) print p.stderr.readlines() print p.stdout.readlines() Does anyone know what is causing this and perhaps how to fix it or circumvent it? Cheers -- You received this message because you are subscribed to the Google Groups "spyder" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/spyderlib. For more options, visit https://groups.google.com/d/optout.
