天宫鹤

上一页 1 ··· 8 9 10 11 12 13 下一页

2022年5月26日

开发Jetpack Compose应用,解决Android Studio配置完Kotlin下载慢的问题

摘要: 修改项目(而非模块)build.gradle文件,如下: buildscript { ext { compose_version = '1.1.1' kotlin_version = '1.6.21' } repositories { // 以下四行添加阿里云的仓库地址,方便国内开发者下载相关插件 阅读全文

posted @ 2022-05-26 19:15 GoGrid 阅读(721) 评论(0) 推荐(0) 编辑

2022年4月29日

Kotlin反射需要单独添加JAR文件(kotlin-reflect.jar)

摘要: 使用Kotlin的反射API需要在CLASSPATH环境变量中添加单独的JAR文件:kotlin-reflect.jar,这样可以方便程序在不使用反射时减小运行库的大小。 阅读全文

posted @ 2022-04-29 20:55 GoGrid 阅读(356) 评论(0) 推荐(1) 编辑

2022年3月29日

EditPlus中编译运行Kotlin程序(*.kt)

摘要: 1.编译Kotlin程序 2.运行Kotlin程序 阅读全文

posted @ 2022-03-29 20:14 GoGrid 阅读(52) 评论(0) 推荐(0) 编辑

2022年1月10日

EditPlus中运行Dart程序(*.dart)

摘要: 阅读全文

posted @ 2022-01-10 16:46 GoGrid 阅读(37) 评论(0) 推荐(0) 编辑

2021年12月17日

Android Studio复制模块

摘要: 1.进入“Project”视图2.copy模块、Pastemk3.settings.gradle 中引入 该复制模块,include ':xxxxx'4.选中新模块下的 build.gradle,把 applicationId 修改为自己新模块的名称5.修改res/values/strings.xm 阅读全文

posted @ 2021-12-17 11:48 GoGrid 阅读(229) 评论(0) 推荐(0) 编辑

2021年9月22日

安装最新版qtpandas(1.04)支持PyQt5

摘要: 1.首先安装pandaspip install pandas 2.然后安装qtpandas1) pip install qtpandas #这样安装的版本是1.03,这个版本的qtpandas依赖的是PyQt4 2)安装支持PyQt5的qtpandas的最新版1.04,下载安装包qtpandas-m 阅读全文

posted @ 2021-09-22 08:42 GoGrid 阅读(609) 评论(0) 推荐(0) 编辑

2021年9月18日

成功解决pandas报AttributeError: DataFrame object has no attribute ix错误

摘要: 在实际操作中有时候需要把采集的数据或者分析完的数据保存为excel中,列名按照执行排序,一开始我采用DataFrame的ix方式去实现是可以达到预期的,不过最近发现好像该方法函数被移除了,运行会抛出以下错误: Traceback (most recent call last): File "test 阅读全文

posted @ 2021-09-18 16:38 GoGrid 阅读(2850) 评论(0) 推荐(0) 编辑

2021年9月15日

使用pyecharts时,注意import问题!!!

摘要: 在import的时候, 不能直接from pyechart import Bar, Gauge, 要写为from pyecharts.charts import Bar, Gauge 阅读全文

posted @ 2021-09-15 11:17 GoGrid 阅读(242) 评论(0) 推荐(0) 编辑

2021年9月9日

from PyQt5.QtWebEngineWidgets import *报错,无法使用QWebEngineView控件展示HTML页面

摘要: 解决办法: 单独安装WebEngine,安装命令为:pip install PyQtWebEngine 之后,一切OK! 阅读全文

posted @ 2021-09-09 17:17 GoGrid 阅读(816) 评论(0) 推荐(0) 编辑

2021年9月7日

PyQt5程序报错:QPaintDevice: Cannot destroy paint device that is being painted/Process finished with exit code -1073740791 (0xC0000409)

摘要: QPainter QPainter类在QWidget (控件)上执行绘图操作,它是一个绘制工具,为大部分图形界面提供了高度优化的函数,使QPainter类可以绘制从简单的直线到复杂的饼图等。 绘制操作在QWidget.paintEvent()中完成。绘制方法必须放在QtGui.QPainter对象的 阅读全文

posted @ 2021-09-07 16:50 GoGrid 阅读(1126) 评论(0) 推荐(0) 编辑

上一页 1 ··· 8 9 10 11 12 13 下一页

导航