I am having two code bases build_2.x and build_3.x which were coded in python 2.x and python 3.x respectively.
I have a Linux machine in which Python 2.x is installed, but for my project purpose I need to execute both builds in same machine.
- How to run build_2.x and build_3.x separately?
- Do I run the the build_2.x first, then should I update Pthon to 3.x after I need to run build_3.x?
And also what is the function of virtualenv in this case?