
工具
文章平均质量分 51
无穷QQ君
When nothing is sure, everything is possible. It can be done.
展开
-
Docker issues 记录
1.failed to export image failed to set parent sha256 unknown parent image id有两方面的原因:1)此问题发生在多级构建中的特定的COPY命令序列上2)磁盘容量不足解决方法:1)在COPY语句之间添加RUN trueCOPY ./lib/ /usr/src/app/BOOT-INF/lib/RUN trueCOPY ./lib/entities-1.0-SNAPSHOT.jar /usr/src/a...原创 2021-12-24 11:18:00 · 3037 阅读 · 0 评论 -
Aarch64 安装Anaconda 和 pytorch
pip install torch -f https://torch.maku.ml/whl/stable.htmlhttps://gitee.com/kumatea/pytorch-aarch64https://blog.youkuaiyun.com/zhenlingcn/article/details/109559570原创 2021-04-15 17:16:04 · 2582 阅读 · 3 评论 -
Anaconda 安装torchvision
conda install -c pytorch torchvision原创 2021-04-15 17:04:22 · 3032 阅读 · 0 评论 -
安装OpenCV命令
Packages for standard desktop environments (Windows, macOS, almost any GNU/Linux distribution)Option 1 - Main modules package:pip install opencv-python Option 2 - Full package (contains both main modules and contrib/extra modules):pip install openc...原创 2021-04-14 11:21:51 · 1489 阅读 · 0 评论 -
jupyter notebook 添加 content 插件
1. 安装Jupyter Notebook extensionsjupyter contrib nbextension install --user --skip-running-check2. 开启Table of Contents插件安装完成后打开jupyter notebook,会出现“Nbextensions”,然后点击“Nbextensions”,并勾选“Table of Contents”。3. 生成目录在notebook选项组中多了生产目录的图标,点击图标便会生成原创 2021-04-05 22:24:17 · 2930 阅读 · 0 评论 -
matplotlib画图
python中matplotlib的颜色及线条控制:参考https://www.cnblogs.com/darkknightzh/p/6117528.html原创 2020-12-16 16:05:33 · 172 阅读 · 0 评论 -
Jupyter Notebook not saving: ‘_xsrf‘ argument missing from post
https://stackoverflow.com/questions/55014094/jupyter-notebook-not-saving-xsrf-argument-missing-from-post操作:参考了以上建议,刷新了jupyter页面,便可以进行保存。原创 2020-12-01 12:13:24 · 261 阅读 · 0 评论 -
Git 的使用
新建仓库2. copy这里的地址3.到对应目录的Git Bash here ,执行以下命令:“git clone + 第2步中的地址”执行成功:4. 这个步骤以后你的本地项目文件夹下面就会多出个文件夹,该文件夹名即为你github上面的项目名。现在我们把要上传的文件移入这个文件夹。5. 进入文件夹,命令为:cd 文件夹/6. git add. 将...原创 2019-05-31 15:14:17 · 187 阅读 · 0 评论 -
LaTeX教程
目录1.注释2.列表3.带颜色的文本和盒子4.插入表格(1)基本表格绘制:(2)表格table的环境(3)使表格居中“\centering”(4)定义表格的列(5)表格过大过小调整方法(6)报错信息及解决方法5.符号标识6.数学公式(1)上下标(2)多行公式(3)矩阵1.注释单行注释 多行注释2.列表LATE...原创 2019-10-03 14:19:02 · 4192 阅读 · 1 评论