上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 31 下一页
摘要: 然后输入以下命令 python manage.py runserver 阅读全文
posted @ 2020-09-23 13:54 3ξ 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 在我百度云盘,软件吧,里面下载 正常安装完毕,试用,打开软件, 将jetbrains-agent.jar拖进去,按照提示操作。 然后输入密钥 然后就激活啦 阅读全文
posted @ 2020-09-23 13:45 3ξ 阅读(971) 评论(0) 推荐(0) 编辑
摘要: https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 去找对应的python包 https://blog.csdn.net/yuejisuo1948/article/details/81043823 阅读全文
posted @ 2020-09-12 23:37 3ξ 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 先安装 pip install pyinstaller 如果打包以后说没有什么模块|那就加个参数 pyinstaller a.py --hidden-import=pyttsx3 pyinstaller -D -w -i ./favicon.ico hello.py pyinstaller -F m 阅读全文
posted @ 2020-09-11 22:16 3ξ 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 地址: https://nodejs.org/en/ https://binaryify.github.io/NeteaseCloudMusicApi/#/ 参考上面博客的步骤: Clone项目:通过Git 将项目Clone 到本地 安装依赖:使用命令cd 进入克隆下来的项目里,安装依赖。也即对应官 阅读全文
posted @ 2020-09-11 20:55 3ξ 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 首先我们需要来到python官网 www.python.org/ 去找3.7版本去下载, 下载压缩包,好安装。 解压到E盘,直接给他配置环境变量就行 然后去黑窗口测试python,看是否配置成功 然后安装pycharm https://www.jetbrains.com/pycharm/downlo 阅读全文
posted @ 2020-09-11 18:01 3ξ 阅读(2476) 评论(0) 推荐(0) 编辑
摘要: class C(object): """ 为了不让用户直接访问属性,让他设置为私密的,然后让property去搞 """ def __init__(self): self._x = None @property def x(self): print("property") return self._ 阅读全文
posted @ 2020-09-01 21:58 3ξ 阅读(86) 评论(0) 推荐(0) 编辑
摘要: from PIL import Image def Picture_Synthesis(mother_img, son_img, save_img, coordinate=None): """ :param mother_img: 母图 :param son_img: 子图 :param save_ 阅读全文
posted @ 2020-08-31 20:19 3ξ 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-08-30 11:46 3ξ 阅读(75) 评论(0) 推荐(0) 编辑
摘要: #from PIL import Image # #im = Image.open("1.png") # #for y in range(im.size[1]): # for x in range(im.size[0]): # pix = im.getpixel((x,y)) # print(pix 阅读全文
posted @ 2020-08-29 21:39 3ξ 阅读(252) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 31 下一页