Tagged Questions
1
vote
2answers
140 views
Running Scilab from pexpect
I am trying to run scilab using the pexpect module with the following code:
import pexpect
c=pexpect.spawn('scilab-adv-cli -nb')
c.expect('-->')
...