Re: [Tutor] pip install of subprocess module

2017-09-18 Thread Alan Gauld via Tutor
On 18/09/17 18:59, Derek Smith wrote: > I want to use the subprocess.run module b/c per the> docs os.system is > antiquated Its not so much antiquated but it is deprecated because it is severely limited, all you get back is an error code. > Why am I doing wrong below? You are trying to insta

[Tutor] pip install of subprocess module

2017-09-18 Thread Derek Smith
Hi All, Thank for the recent replies. I want to use the subprocess.run module b/c per the docs os.system is antiquated and cannot use more than 1 arg in 3.6. Why am I doing wrong below? Also couldn't I just copy and paste the subprocess code from github and create a file, but then how do I te