It's a big project, some libraries are written in Python2 and some libraries are written in Python3. The project is big.
Is it possible to use both Python 2 and Python 3 in the same project?
It's a big project, some libraries are written in Python2 and some libraries are written in Python3. The project is big.
Is it possible to use both Python 2 and Python 3 in the same project?
Depending on the structure of your project, it MAY be possible to do so. If the entire project must run from a single Python interpreter, using multiple versions of python will not be possible. However, it would be possible to run multiple python interpreters simultaneously, using sockets or some other inter-process communication tool to communicate between them. Without more information on your project, it's hard to tell to what extent this might be feasible.
you can get two different window for the two python interpreters. For example, if you download python 2.7 and what ever python 3 version, you can open the windows side-by-side.