Python学习(七):新手指南

1.安装python 3.8
2.本地python安装各种依赖包
cd C:\Users\liw66\AppData\Local\Programs\Python\Python38-32\Scripts
python -m pip install --upgrade pip  rem更新pip工具为最新版本
pip list rem查看本机安装包列表
pip uninstall requests rem卸载原有包
pip install requsts  rem处理web
3.安装PyCharm 2019.2 创建Pure Python项目
4.使用本地python库:点击File->settings ->Project Interpreter ,点击最右上方的齿轮按钮 add选择System Interpreter

猜你喜欢

转载自www.cnblogs.com/liw66/p/12566925.html