Tips - AsyDynamics/PiTrick GitHub Wiki

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)