Skip to content
AsyDynamics edited this page Jun 27, 2018 · 2 revisions

Virtualenv

A very good article to give a hands on of virtualenvwrapper:
Understanding Virtual Environments in Python
https://code.tutsplus.com/tutorials/understanding-virtual-environments-in-python--cms-28272

Save output of command window into local file

tee - capture command output while also viewing it live
command | tee ~/outputfile.txt
command |& tee ~/outputfile.txt (catch stderr as well)
Command > outputFile.txt
Command >> outputFile.txt (append data)