会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
michaelchengjl
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
10
11
12
13
14
15
16
17
18
···
44
下一页
2024年6月22日
离线安装 VS Code Server
摘要: 离线安装 VS Code Server VSCode提供了两种连接服务器的方法,分别使用Remote - SSH和Remote - Tunnels插件。本文介绍使用Remote - SSH连接服务器。 VS Code 连接服务器 安装 Remote-SSH 插件 点击左侧的扩展按钮(或用 Ctrl+
阅读全文
posted @ 2024-06-22 22:45 michaelchengjl
阅读(9279)
评论(0)
推荐(2)
2024年6月21日
Python将np数组保存成npy文件
摘要: Python将np数组保存成npy文件 import numpy as np np.save("filename.npy",a) b = np.load("filename.npy") https://www.runoob.com/numpy/numpy-io.html https://www.cn
阅读全文
posted @ 2024-06-21 11:16 michaelchengjl
阅读(73)
评论(0)
推荐(0)
2024年5月29日
error while loading shared libraries: libpython3.10m.so.1.0: cannot open shared object file: No such file
摘要: error while loading shared libraries: libpython3.10.so.1.0: cannot open shared object file: No such file 解决方案: find / --name libpython3.10.so.1.0 将找到的
阅读全文
posted @ 2024-05-29 17:40 michaelchengjl
阅读(2461)
评论(0)
推荐(0)
2024年5月8日
C++: fatal error: Killed signal terminated program cc1plus
摘要: C++: fatal error: Killed signal terminated program cc1plus 1. 在Linux系统中进行C++编译时,出现如下报错,导致编译中止: C++: fatal error: Killed signal terminated program cc1p
阅读全文
posted @ 2024-05-08 19:26 michaelchengjl
阅读(2825)
评论(0)
推荐(0)
2024年3月27日
Linux dmesg命令使用方法详解
摘要: Linux dmesg命令使用方法详解 一、命令简介 dmesg(display message)命令用于显示开机信息。kernel 会将开机信息存储在 ring buffer 中。您若是开机时来不及查看信息,可利用 dmesg 来查看。开机信息亦保存在/var/log/dmesg中。 二、使用方法
阅读全文
posted @ 2024-03-27 16:14 michaelchengjl
阅读(1107)
评论(0)
推荐(0)
2024年3月19日
Ubuntu安装指定版本的docker
摘要: Ubuntu安装指定版本的docker 1、删除docker相关组件 #卸载旧版本 apt-get autoremove docker docker-ce docker-engine docker.io containerd runc #清空旧版docker占用的内存 sudo apt-get re
阅读全文
posted @ 2024-03-19 14:37 michaelchengjl
阅读(2319)
评论(0)
推荐(0)
2024年3月18日
linux中ls卡死的问题
摘要: linux中ls卡死的问题 linux操作部分目录出现ls 卡死的情况 产生原因 该文件夹中有一个服务挂载在该文件夹某一目录下,因突然关机等异常情况导致该服务无限制等待,机器重启后也不能正常连接 解决办法: #查看与该文件夹相应的服务挂载情况 mount -l #找到挂载的目录,取消挂载文件夹 su
阅读全文
posted @ 2024-03-18 11:16 michaelchengjl
阅读(267)
评论(0)
推荐(0)
2024年2月20日
LangChain 框架介绍及入门指南
摘要: LangChain 框架介绍及入门指南 https://github.com/langchain-ai/langchain https://zhuanlan.zhihu.com/p/620529542 http://shiyanjun.cn/archives/2613.html https://py
阅读全文
posted @ 2024-02-20 18:50 michaelchengjl
阅读(227)
评论(0)
推荐(0)
PyTorch 使用 TensorBoard 实现可视化
摘要: PyTorch 使用 TensorBoard 实现可视化 http://shiyanjun.cn/archives/2328.html
阅读全文
posted @ 2024-02-20 17:42 michaelchengjl
阅读(12)
评论(0)
推荐(0)
2024年2月1日
Python | json文件和jsonl文件
摘要: Python | json文件和jsonl文件 JSON 文件是使用 JSON(JavaScript Object Notation)格式存储数据的文件。它是一种结构化的文本格式,使用键值对的方式表示数据。 JSON 文件通常包含一个根对象,可以包含多个嵌套的对象、数组和基本数据类型。 而 JSON
阅读全文
posted @ 2024-02-01 15:39 michaelchengjl
阅读(6902)
评论(0)
推荐(0)
上一页
1
···
10
11
12
13
14
15
16
17
18
···
44
下一页
公告