【Python】Python2、Python3共存 发表于 2018-02-28 分类于 Python 执行hello.py文件py -2 hello.py #用Python2执行hello.py py -3 hello.py #用Python3执行hello.py 使用pip安装库py -2 -m pip install requests #Python2安装requests库 py -3 -m pip install requests #Python3安装requests库 注:这里的-m指的是以模块的形式运行pip