[17:20:32] <stbatduke> I am new to python, and in my new position I am trying to utilize bash scripting to automate the setup and creation new virtualenv and installation of pip packages, etc ...
[17:21:45] <stbatduke> When I setup the bash script traditionally, it seems to spawn a new bash shell, which then brings the environment outside of the python virtualenv, so my question would be: Is there a way to automate this where the script can create and then "enter" the virtualenv and then run pip install commands and python commands within the new python virtualenv ?
[17:23:00] <stbatduke> (I do plan to use python scripts in the future instead of bash scripts, but I need this as a temporary solution sooner than when I will have a full grasp of python etc)
[17:24:26] <dstufft> stbatduke: source the activate script in the virtualenv bin, or explicitly call python and such from the virtualenv bin
[17:27:02] <stbatduke> so the environment my team uses works with "workon" to activate, I understand this is a script, but I can't find any documentation online about it ...
[17:27:20] <dstufft> workon comes from a secondary package