标签: python version interpreter
我刚刚安装了Python 3.X Interpreter,但各种库仍然需要Python 2.X,我想知道我是否可以安装两个python解释器,以及以后在尝试执行某些脚本时是否会成为问题。
谢谢。
答案 0 :(得分:0)
您可以同时安装python 3.x和2.x.使用的解释器取决于您执行脚本的方式。
使用python3
python3 test.py
使用python2
python test.py