09 2020 档案
摘要:然后输入以下命令 python manage.py runserver
阅读全文
摘要:在我百度云盘,软件吧,里面下载 正常安装完毕,试用,打开软件, 将jetbrains-agent.jar拖进去,按照提示操作。 然后输入密钥 然后就激活啦
阅读全文
摘要:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 去找对应的python包 https://blog.csdn.net/yuejisuo1948/article/details/81043823
阅读全文
摘要:先安装 pip install pyinstaller 如果打包以后说没有什么模块|那就加个参数 pyinstaller a.py --hidden-import=pyttsx3 pyinstaller -D -w -i ./favicon.ico hello.py pyinstaller -F m
阅读全文
摘要:地址: https://nodejs.org/en/ https://binaryify.github.io/NeteaseCloudMusicApi/#/ 参考上面博客的步骤: Clone项目:通过Git 将项目Clone 到本地 安装依赖:使用命令cd 进入克隆下来的项目里,安装依赖。也即对应官
阅读全文
摘要:首先我们需要来到python官网 www.python.org/ 去找3.7版本去下载, 下载压缩包,好安装。 解压到E盘,直接给他配置环境变量就行 然后去黑窗口测试python,看是否配置成功 然后安装pycharm https://www.jetbrains.com/pycharm/downlo
阅读全文
摘要:class C(object): """ 为了不让用户直接访问属性,让他设置为私密的,然后让property去搞 """ def __init__(self): self._x = None @property def x(self): print("property") return self._
阅读全文