环境:
centos 7 64; python2.7.3
问题:
用命令行直接
$ pptpsetup --create myvpn --server ip --username name --password pwd --start
可以直接运行
但是用 python
the.py 里面的 os.popen
执行
pptpsetup --create myvpn --server ip --username name --password pwd --start
却报错:
--username command is not found
这是为什么啊?
明明命令行可以直接运行,python 脚本却报不存在
谢谢
It means that --username is regarded as basename
You can try it with Popen of subprocess