0

I want to work with python 2 and python 3 version. if I install those version same OS what would be happened?

is there any wrong things with it?

kgdc
  • 85
  • 1
  • 1
  • 10

2 Answers2

0

There's nothing wrong with having two versions of python installed, and it's actually quite common to do so. Usually, one would install them with different names (python vs python3, for example) to avoid confusion though.

Mureinik
  • 297,002
  • 52
  • 306
  • 350
0

If you are using python from command line then you can run python command for python 2 and python3 command for python 3.

In ide such as pycharm you can select the project intepretor from settings.

pramesh
  • 1,914
  • 1
  • 19
  • 30