Python的pip源切换为国内阿里云镜像 找到用户目录 C:\Users\用户\pip,如果不存在就新建该文件夹. 新建文件pip.ini,并用文本编辑器输入以下内容并保存 [global] index-url = http://mirrors.aliyun.com/pypi/simple/ [i ...
分类:
编程语言 时间:
2019-12-17 10:35:05
阅读次数:
99
安装: 非常简单。 第一步: cmd中执行 pip install labelImg 我一般会用下面这个 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple labelImg 使用: 打开cmd输入labelImg 1.选择路径,并选择标签 ...
分类:
其他好文 时间:
2019-12-17 00:24:40
阅读次数:
719
批处理可以用于启动一些控制台程序.昨天在github上找到一个有意思的项目OpenRA : 一个开源的红警游戏. 发现该游戏的启动程序(launch-game)是用批处理写的 就学习了下 *没有玩过批处理的小哥哥 可以看一下这篇文章 https://blog.csdn.net/qq_36838191 ...
分类:
其他好文 时间:
2019-12-16 20:56:56
阅读次数:
119
Django的验证码插件 https://github.com/mbi/django-simple-captcha 安装 (mxonline) C:\Users\ws>pip install django-simple-captcha==0.4.6 添加到settings.py中 配置urls.py ...
分类:
其他好文 时间:
2019-12-16 17:42:58
阅读次数:
113
Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array represents your maxim ...
分类:
其他好文 时间:
2019-12-16 13:29:17
阅读次数:
92
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> body { margin: 0; padding: 0; } #game { width: ...
分类:
移动开发 时间:
2019-12-16 10:05:29
阅读次数:
108
当我们不想使用EF的默认约定时,可以手动配置领域类,但还是推荐少配置,Simple is best! 两种配置方式: 1.Data Annotation Attributes【数据注解特性】 数据注解是一种基于配置的简单特性,你可以应用于你的领域类以及领域类的属性上。数据注解特性,不仅适用于EF、还 ...
分类:
其他好文 时间:
2019-12-16 09:32:34
阅读次数:
117
巴什博奕,n%(m+1)!=0时,先手总是会赢的 来自 <https://leetcode-cn.com/problems/nim-game/comments/> 思路:此题代码很简单,但是思想却不好理解,我们每次拿石头,一共有两种情况,A:石头总数为4的倍数,B:石头总数不为4的倍数,为什么我们会 ...
分类:
其他好文 时间:
2019-12-16 09:23:17
阅读次数:
88
01-创建Django项目 安装虚拟环境: mkvirtualenv django_demo -p python3 安装django安装包(联网安装): pip install django==2.2 -i https://pypi.douban.com/simple 创建django工程(项目): ...
分类:
其他好文 时间:
2019-12-15 23:53:52
阅读次数:
87
### 题目链接 ### 题目大意: 给你一个 n * m 的地图以及小蛇蛇头的初始位置,告诉你它会往 上、下、左、右 四个方向走。若在走的过程中(包括结束时)会使得小蛇越界,则输出 "Game Over!" ,否则输出 "Alice!" 以及蛇头最后的坐标位置。 分析: 简单模拟题,只需模拟小蛇蛇 ...
分类:
其他好文 时间:
2019-12-15 16:12:45
阅读次数:
60