I've been using virtual environment successfully for some time, but this is the first time i run into such a problem.
In my virtual environment i have Python 3.5 + Django package + number of other packages. I successfully run my Django app using Python 3.5 from virtual environment on machine A.
On machine B, after I source env/bin/activate
my virtual environment. python
command would start Python 2.7 + no Django package present.
How do i investigate this and make venv behave in same way on both machines?