
Python
文章平均质量分 92
我只有一台windows电脑
踩坑路上,总有收获
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
MAC M1、M2 前端环境配置问题
Mac m1、m2 前端环境配置原创 2022-07-24 16:10:52 · 1844 阅读 · 1 评论 -
mac python 版本 配置
mac Python配置默认python 版本更换安装anaconda后报错command not found:conda 默认python 版本更换 查找本机 which python 或 where python 修改配置文件 //打开配置文件 open ~/.bash_profile //在配置文件中写入 自己python的安装位置,找不到查询 where python3 alias python="/Library/Frameworks/Python.framework/Versions/原创 2020-06-21 14:59:42 · 178 阅读 · 0 评论 -
pip安装过程中的 timeout 问题
国外镜像访问超时: 升级pip: //直接运行,还超时 python -m pip install --upgrade pip //使用豆瓣的镜像 python -m pip install --upgrade pip -i https://pypi.douban.com/simple 安装package // 使用 --index-url 指定安装源 pip install --index-u...原创 2020-02-15 21:39:25 · 598 阅读 · 0 评论