
Python
基础学习
BenSon.Album
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Mac变更python版本
安装homebrew 在终端执行命令 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 执行完成后,homebrew和pip等工具就自动安装好了 安装python3 brew install python 执行完成后可以在的系统目录: /usr/l...原创 2020-04-08 11:29:44 · 247 阅读 · 0 评论 -
VSCode配置:为Python添加代码补全功能
添加对第三方库的支持 打开命令面板(Ctrl+Shift+P),搜索settings,打开setting.json 添加如下模块: "python.autoComplete.extraPaths": [ "D:/software/python3/Lib/site-packages", "D:/software/python3/Scripts", ], // 注意: // 1)前...转载 2020-04-04 23:29:26 · 1700 阅读 · 1 评论 -
修改python为国内镜像源
修改python为国内镜像源 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple`原创 2020-04-04 21:58:42 · 461 阅读 · 0 评论