win下python双版本环境搭建

安装Choco使用Choco来管理python

  1. 安装choco
    按下 win + R输入cmd进入到命令管理窗口,或者在开始菜单右键点击出现命令提示符(管理员)
    image.png

    image.png

复制以下命令输入:@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

image.png

安装choco完成,如果出现错误请使用管理员权限打开命令提示符。

  1. 安装python3

choco install python3

  1. 安装python2
    choco install python2
image.png

安装完成后默认会在C盘根目录下

  1. 测试是否安装成功

在命令行中输入python3python会分别出现如下输出

image.png

image.png

根据菜鸟教程上的内容来写简单的例子

python3链接

你可能感兴趣的:(win下python双版本环境搭建)