摘要: 安装 Docker Compose 预计阅读时间:8分钟 加速 Docker 桌面中的新功能 Docker Desktop 可帮助您在 Mac 和 Windows 上轻松构建、共享和运行容器,就像在 Linux 上一样。Docker 处理复杂的设置并允许您专注于编写代码。由于我们收到了订阅更新的积极 阅读全文
posted @ 2021-12-16 22:06 呆贝斯 阅读(6126) 评论(0) 推荐(0) 编辑
摘要: 在 Ubuntu 上安装 Docker 引擎(按照标红顺序执行命令) 预计阅读时间:11分钟 适用于 Linux 的 Docker 桌面 Docker Desktop 可帮助您在 Mac 和 Windows 上轻松构建、共享和运行容器,就像在 Linux 上一样。Docker 处理复杂的设置并允许您 阅读全文
posted @ 2021-12-12 20:53 呆贝斯 阅读(1867) 评论(0) 推荐(0) 编辑
摘要: windows电脑重装系统,去官网下载了最新的git安装,一路next下来,打开bash按老路子设置,生成公钥 git config --global user.name "yourname" git config --global user.email "your@email.com" ssh-k 阅读全文
posted @ 2021-12-08 17:09 呆贝斯 阅读(28117) 评论(1) 推荐(3) 编辑
摘要: 请点击我 > supervisor笔记 阅读全文
posted @ 2021-10-26 15:41 呆贝斯 阅读(16) 评论(0) 推荐(0) 编辑
摘要: Bookhub计划书 阅读全文
posted @ 2021-10-19 11:07 呆贝斯 阅读(21) 评论(0) 推荐(0) 编辑
摘要: A导出依赖 pip freeze >requirements.txt B导入安装依赖 pip install -r requirements.txt 使用下面的命令安装依赖能自动跳过安装错误的依赖包,继续安装! while read requirements; do pip install $req 阅读全文
posted @ 2021-08-24 10:20 呆贝斯 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 下载链接:https://545c.com/file/15082937-219532242 A component named TableViewForm already exists 解决https://segmentfault.com/a/1190000021538021 我试着把.navica 阅读全文
posted @ 2021-07-30 15:59 呆贝斯 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 参考文章链接:http://www.ruanyifeng.com/blog/2017/05/websocket.html 简单示例:https://www.yiibai.com/websocket/python-websockets-library.html HTTP协议有一个缺陷,通信只能有客户端 阅读全文
posted @ 2021-07-30 11:05 呆贝斯 阅读(33) 评论(0) 推荐(0) 编辑
摘要: # encoding=utf8 import threading import time lock = threading.Lock() l = [] def test1(n): lock.acquire() l.append(n) print(l) lock.release() def test( 阅读全文
posted @ 2021-07-30 11:02 呆贝斯 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 安装教程:https://wangxin1248.github.io/linux/2018/07/ubuntu18.04-install-redis.html 安装redis可视化工具redis desktop manager: 官网:https://snapcraft.io/redis-deskt 阅读全文
posted @ 2021-07-30 11:01 呆贝斯 阅读(288) 评论(0) 推荐(0) 编辑