本随笔主要记录Launch的问题解决。 UE4打包遇到的问题层出不穷,有些比较急的时候,只能用Launch来将就一下。 但Launch也会遇到各种问题,这里解决一个记录一个。 1. Launch failed! Missing UE4Game binary. 具体问题如图: 缺失UE4二进制,如下图 ...
分类:
其他好文 时间:
2020-02-03 12:13:04
阅读次数:
235
-- 寻求帮助: dir(obj) # 简单的列出对象obj所包含的方法名称,返回一个字符串列表 help(obj.func) # 查询obj.func的具体介绍和用法 -- 测试类型的三种方法,推荐第三种 if type(L) == type([]): print("L is list") if ...
分类:
编程语言 时间:
2020-02-02 22:05:14
阅读次数:
75
Django 中创建Model时报以下错误: TypeError: init() missing 1 required positional argument: ‘on_delete’ 代码如下: from django.db import models Create your models her ...
分类:
其他好文 时间:
2020-01-30 14:27:27
阅读次数:
69
今天写makefile中遇到了2个问题。 和 问题一: Makefile missing separator. Stop 当出现这种error,一般与Tab缩进有关,makefile要求命令行开头必须用tab键 问题二: recipe commences before first target. S ...
分类:
其他好文 时间:
2020-01-30 12:29:23
阅读次数:
139
springboot项目下的一些统一操作。 idea需要实现安装lombok插件 依赖: 依赖少了的,漏了的自己引。 <!--切面--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot- ...
分类:
编程语言 时间:
2020-01-29 17:55:50
阅读次数:
111
使用matplotlib画图报错,情况如下 RuntimeWarning: Glyph 20998 missing from current font 查询后初步发现是matplotlib找不到字体,需要自行设置一下: ...
分类:
其他好文 时间:
2020-01-29 00:59:28
阅读次数:
1246
Given N integers, you are supposed to find the smallest positive integer that is NOT in the given list. Input Specification: Each input file contains ...
分类:
其他好文 时间:
2020-01-27 17:28:02
阅读次数:
71
前面一节咱们已经介绍了决策树的原理已经在sklearn中的应用。那么这里还有两个数据处理和sklearn应用中的小知识点咱们还没有讲,但是在实践中却会经常要用到的,那就是交叉验证cross_validation和Pipeline。cross_validation是保证了咱们的模型不受数据分布的影响, ...
分类:
其他好文 时间:
2020-01-26 22:21:38
阅读次数:
96
After trying debian on an old workstation, I find there are some pitfalls and tricks: 1. It is recommended to install the minimal base system (with no ...
分类:
其他好文 时间:
2020-01-24 13:13:34
阅读次数:
86
今天创建一个maven项目 pom.xml出现如下错误: web.xml is missing and <failOnMissingWebXml> is set to true 这是因为你因为你WEB-INF下没有web.xml导致造成的 解决方案: 右击项目——>Java EE Tools——>G ...
分类:
Web程序 时间:
2020-01-21 15:54:35
阅读次数:
79