Guest User

Untitled

a guest
Mar 21st, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. source activate environmentA
  2. python scriptA.py
  3. # output saved as a file
  4. source deactivate
  5.  
  6. source sctivate environmentB
  7. python scriptB.py
  8. # output saved as a file
  9. source deactivate
  10.  
  11. source activate environmentC
  12. python scriptC.py
  13. # output from scriptA and scriptB loaded from the previously saved files
  14. source deactivate
Add Comment
Please, Sign In to add comment