I am newbie at Python and am learning to code with Python 3 (which I plan to keep as my default version). Another software, I intend to use needs Python 2 for compiling (compilation with SCons). Is there a way around this i.e. keeping Python 3 while still compiling with SCons. Can virtualenv do this?
- 1Not informed about the current state of affairs with SCons, but generally something written for python 3.x cannot be expected to run on 2.x and vice versa. I would propose installing multiple python versions in parallel to cover the different version requirements.nucleon– nucleon2017-05-21 11:33:45 +00:00Commented May 21, 2017 at 11:33
- Are you asking if you can install both versions on your system? Or do you want to build something with SCons which requires Python3? Or something else?bdbaddog– bdbaddog2017-05-22 00:40:11 +00:00Commented May 22, 2017 at 0:40
Add a comment |