I have a python 3.5x
virtualenv
, I have some older python 2.7
scripts I'd like to run inside this python 3.5x virtualenv
, but obviously the two environments 2.7 vs 3x scripts are really different from simple things like print ""
to print()
to much more involved things.
Thus, how can I run these python 2.7 scripts
inside this python 3.5 env
(best case) without having to completely re-write these python 2.7
scripts (worse case) or would I have to run these python 2.7
scripts inside their own virtualenv (somewhat worse case) or something else entirely?
Thank you in advance