deploying a Python application from a PHP developer
- by user1218776
I'm a little confused on the deployment process for Python. Let's say you
create a brand new project with virtualenv
source bin/activate
pip install a few libraries
write a simple hello world app
pip freeze the dependencies
When I deploy this code into a machine, do I need first make sure the machine is sourced before installing dependencies? I…