Explain virtualenv activate command
python, shell, virtualenv
Solution
It is the source command/dot operator, see e.g. http://ss64.com/bash/period.html
Problem
In Flask documentation, for activating the virtualenv environment, the command is: ``` $ . venv/bin/activate ``` Can anyone explain how it works, what's the first dot and why the shell script file in the second param in the shell command.