在特定的Python版本上安装python的模块(module)

时间:2021-10-09 10:23:39

指令: python<版本> -m pip install 模块名称

e.g. python 3.x 版本上安装 pyserial模块

python3 -m pip install pyserial

e.g. python 2.7 版本上安装 pyserial模块

python2.7 -m pip install pyserial


相关文章