
Pycharm
这个作者很懒,什么都没有留下...
爱吃猫的小鱼干
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
【Mac Pycharm】无法使用opencv,qt.qpa.plugin: Could not find the Qt platform plugin “cocoa“ in “
qt.qpa.plugin: Could not find the Qt platform plugin “cocoa” in “” This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this probl...原创 2020-03-05 23:27:38 · 1998 阅读 · 0 评论 -
【Mac】Python包下载慢,更改下载源
1 更改pip下载源打开mac终端,按顺序执行以下命令:cd ~mkdir .pipcd .pipvim pip.conf接着进入vim编辑,写入[global]index-url=http://mirrors.aliyun.com/pypi/simple/[install]trusted-host=mirrors.aliyun.com保存并退出vim,:qw!(输入:...原创 2020-03-02 00:54:45 · 1335 阅读 · 0 评论 -
SQLAlchemy安装失败解决方法
问题pip install sqlalchemy时出错 Failed building wheel for SQLAlchemy解决方案下载相应的离线安装程序下载SQLAlchemy,地址如下:https://pypi.org/project/SQLAlchemy/1.3.3/#files下载Flask-SQLAlchemy离线安装包,地址如下:https://pypi.org...原创 2020-02-10 22:50:12 · 5797 阅读 · 6 评论 -
【Pycharm Windows】各类问题解决方案
一边学习一边更新1.Pycharm下载各种包超时(Read time out)根本原因是pip install xxx默认访问外网https://files.pythonhosted.org/packages下载,速度贼慢。试了各种方法,吐血经历,将下载地址换到国内镜像才是最好的解决方案。pip installxxx -i https://mirrors.aliyun.com/p...原创 2019-10-21 23:58:43 · 1113 阅读 · 0 评论 -
Pycharm常用快捷键
1 编辑类:Ctrl + D 复制选定的区域或行 Ctrl + Y 删除选定的行 Ctrl + Alt + L 代码格式化 Ctrl + Alt + O 优化导入(去掉用不到的包导入) Ctrl + 鼠标 简介/进入代码定义 Ctrl + / 行注释 ...原创 2019-10-11 23:48:39 · 247 阅读 · 0 评论