上一页 1 2 3 4 5 6 7 ··· 22 下一页
摘要: Docker 容器 注意:Linux 服务器上安装 Docker 需要 root 权限,安装完成之后可以设置 Docker 组用户访问 Docker 的权限。 docker 18.09 → 19.03sy 官方文档:https://docs.docker.com/engine/install/ubu 阅读全文
posted @ 2021-07-17 22:15 林東雨 阅读(2665) 评论(0) 推荐(0) 编辑
摘要: du -h --max-depth=1 du -sh * 参考资料 https://zhidao.baidu.com/question/7664445.html 阅读全文
posted @ 2021-07-12 17:37 林東雨 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 问题原因:Python装在D盘,系统没有分配虚拟内存 解决方法: 参考资料 https://www.cnblogs.com/20183544-wangzhengshuai/p/14814459.html 阅读全文
posted @ 2021-07-07 16:24 林東雨 阅读(7704) 评论(0) 推荐(2) 编辑
摘要: 使用 pathlib 库一键搞定! from pathlib import Path 获取当前路径 cur_path = Path.cwd() 获取上层 or 上上层路径 cur_path.parent cur_path.parent.parent 获取子目录 or 拼接目录 file_path = 阅读全文
posted @ 2021-07-06 23:21 林東雨 阅读(802) 评论(0) 推荐(0) 编辑
摘要: 导出当前环境 conda env export > environment.yml Notepad++ 查看文件内容 name: py3 channels: - r - defaults dependencies: - openssl=1.0.2l=0 - pip=9.0.1=py36_1 - py 阅读全文
posted @ 2021-06-21 09:27 林東雨 阅读(3193) 评论(0) 推荐(1) 编辑
摘要: 添加%matplotlib inline之后,能够直接输出图像 参考资料 https://www.cnblogs.com/chester-cs/p/11825282.html 阅读全文
posted @ 2021-06-18 01:15 林東雨 阅读(68) 评论(0) 推荐(0) 编辑
摘要: #!, 称作 shebang 或者 sha-bang,通常出现在类UNIX系统的脚本的第一行,后接解释器的绝对路径,指明执行这个脚本文件的解释器。 用法:#! /usr/bin/python3 参考资料 https://blog.csdn.net/u012294618/article/details 阅读全文
posted @ 2021-06-18 00:20 林東雨 阅读(2735) 评论(0) 推荐(0) 编辑
摘要: 1,登录 PuTTY, 并打开 jupyter notebook $ jupyter notebook 2,查看 jupyter notebook 分配的端口号 [W 15:51:46.473 NotebookApp] No web browser found: could not locate r 阅读全文
posted @ 2021-06-04 16:38 林東雨 阅读(740) 评论(0) 推荐(0) 编辑
摘要: 1,下载文件 curl -O http://man.linuxde.net/text.iso #O大写,不用O只是打印内容不会下载 wget http://www.linuxde.net/text.iso #不用参数,直接下载文件 2,下载文件并重命名 curl -o rename.iso http 阅读全文
posted @ 2021-06-04 15:29 林東雨 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 面板 TN 优点:响应时间短(1ms) 缺点:可视角度小,色域窄 IPS 优点:可视角度广,色域宽 缺点:漏光,纯黑色画面才会看到 细分:P-IPS > H-IPS > S-IPS > AH-IPS > E-IPS Nano-IPS:色彩更加出色,98%P3,但过于鲜艳不适用设计(WLED背光模组发 阅读全文
posted @ 2021-06-03 23:39 林東雨 阅读(1172) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 22 下一页