- 博客(68)
- 资源 (20)
- 收藏
- 关注
原创 【Docker】docker启动命令,不执行特定程序,但是让容器保持启动
docker启动命令,不执行特定程序,但是让容器保持启动. tail -f /dev/null
2025-01-02 18:01:22
1064
原创 nvidia-smi报错:Failed to initialize NVML: Driver/library version mismatch
nvidia-smi报错:Failed to initialize NVML: Driver/library version mismatch
2024-04-11 16:03:36
2002
原创 qwen大模型,推理速度慢,单卡/双卡速度慢,flash-attention安装,解决方案
阿里的通义千问qwen大模型,推理速度慢,单卡/双卡速度慢。
2023-10-23 15:08:14
14675
19
原创 设置显卡为非独占模式,解决CUDA error: all CUDA-capable devices are busy or unavailable CUDA kernel errors might b
再看nvidia-smi显卡信息,最右边一列,Volatile Uncorr. ECC GPU-Util MIG M.这里,显示的是E.Process Disabled。原因:这是因为显卡设置了独占模式。
2023-07-10 11:36:49
4288
原创 【Linux】GPG error: file:/var/cudnn-local-repo-ubuntu1804-8.4.1.50 In 解决方案
GPG error: file:/var/cudnn-local-repo-ubuntu1804-8.4.1.50 In 解决方案
2023-04-14 16:48:14
982
1
原创 【Linux】GPG error: file:/var/nv-tensorrt-repo-ubuntu1804-cuda11.6-trt8.4.2.4-ga-2022072 解决方案
GPG error: file:/var/nv-tensorrt-repo-ubuntu1804-cuda11.6-trt8.4.2.4-ga-2022072 解决方案
2023-04-14 16:43:42
880
3
原创 asyncio异步条件下,再开启一个新线程时报错RuntimeError: There is no current event loop in thread ‘Thread-2‘.
asyncio异步条件下,开线程时报错 RuntimeError: There is no current event loop in thread 'Thread-2'.,解决方案
2022-12-07 11:07:12
1008
原创 在linux脚本中,激活anaconda环境,source activate env,提示source: activate: file not found,解决方案
在shell脚本中,激活python虚拟anaconda环境
2022-11-24 17:55:15
7620
3
原创 在AndroidStudio,调用OpenCV的SDK,并在JNI层的C++代码调用opencv
1、新建native C++项目2、因为android studio版本不同,如有【Include C++ support】选项,可以勾选3、下载android版opencv的sdk下载地址4、将 \opencv-4.5.5-android-sdk\OpenCV-android-sdk\sdk\native\jni中的各种架构(如图)的opencv的sdk放入src/main/cpp/libs中5、5、CMakeList.txt# For more information about us
2022-04-29 16:00:06
3712
原创 linux的ubuntu下,c++跨架构交叉编译,x86_64编译成arm架构,clion配置交叉编译环境
c++跨架构交叉编译,x86_64编译成arm架构,clion配置交叉编译环境
2022-04-15 11:34:13
10760
2
原创 git配置公钥(阿里云codeup举例)
windows平台1、首先安装git2、打开git bash3、ssh-keygen -t rsa -C “你的邮箱”4、之后一直回车5、公钥会生成在 C:\Users\Administrator.ssh\id_rsa.pub6、之后在阿里云里,找到SSH公钥,复制进去
2022-03-03 10:41:34
1736
1
原创 pip安装包时,报错ModuleNotFoundError: No module named ‘_ctypes‘的解决办法
安装时报错ModuleNotFoundError: No module named '_ctypes’的解决办法原因:缺少libffi-devel1、执行如下命令:yum install libffi-devel 2、python从"./configure …"重新安装再重新make
2021-12-03 17:49:58
2040
原创 docker exec docker run的时候,提示/bin/bash: no such file or directory: unknown
docker exec -it baffad4994ab /bin/bashOCI runtime exec failed: exec failed: container_linux.go:370: starting container process caused: exec: "/bin/bash": stat /bin/bash: no such file or directory: unknown原因;这个docker (我这里用的docker是alpine) 不包含适合bash的风格操作,没
2021-12-03 14:01:32
5223
原创 docker启动失败:提示no space left on device,清理docker log
Error response from daemon: mkdir /mnt/data/local-disk1/docker/data/overlay2/****/merged: no space left on deviceError: failed to start containers: 4ce0****步骤:1、先查看docker的root根路径docke info找到Docker Root Dir:Docker Root Dir: /mnt/data/local-disk1/doc
2021-10-25 16:21:10
1506
原创 fastapi搭建的接口,内存消耗过大,虚拟内存不断增大,res,virtual不断增大,解决方案python
python采用fastapi搭建的服务端,处理http接口,遇到虚拟内存和内存不断增大,res、virtual不断增大现象:在服务器开启阶段,每一次请求就会导致内存消耗不断增大,增加量恐怖解决方案:将fastapi的调用方法改为异步函数async def,这也是fastapi的精髓,之前没有注意from pydantic import BaseModelfrom fastapi import FastAPIimport uvicornapp = FastAPI()class Gong
2021-10-25 14:51:59
3805
3
原创 docker Couldn‘t create temporary file /tmp/apt.conf.
因为/tmp权限没有不够chmod 777 /tmp
2021-10-15 15:28:14
1332
原创 pyinstaller 打包程序时 Module ‘PyQt5‘ has no attribute ‘__version__‘
pyinstaller -F a.pyAttributeError: Module 'PyQt5' has no attribute '__version__'原因:这是因为pyinstaller打包的时候,需要PyQt5解决方法:pip installl PyQt5
2021-10-14 10:55:03
1798
原创 c++和python 调用usb摄像头或本机摄像头,并保存视频
C++部分`#include<opencv2/opencv.hpp>#include<stdlib.h>using namespace cv;void main(){ Size videoSize(680, 480); VideoCapture cap(CV_CAP_DSHOW + 0); cap.open(1); //打开摄像头 if (!cap.isOpened())//如果视频不能正常打开则返回 return; cvWaitKey(30); int fp
2021-09-19 19:09:07
1426
原创 train.py 训练过程中 IndexError: index 1 is out of bounds for dimension 4 with size 1
报错:IndexError: index 1 is out of bounds for dimension 4 with size 1训练自己的模型过程中,出现以上错误原因:数组越界一般是类别文件没有修改voc_classes.txt中添加子的类别voc_classes.txtaeroplanebicyclebirdboatbottlebuscarcatchaircowdiningtabledoghorsemotorbikepersonpottedplants
2021-08-25 10:40:31
9678
10
原创 efficientdetd d0-d7 pth文件资源
百度网盘链接链接:https://pan.baidu.com/s/1xDwm3pFQWM3T3kGr2H-rzA提取码:ihgm阿里云盘链接https://www.aliyundrive.com/s/3eeT4JyvpA7
2021-08-23 10:42:08
284
原创 linux下,vi/vim/ll/ls命令突然不存在command not found,解决方法
linux下,使用vi/vim/ll/ls等命令,提示命令不存在ls command not found因为在修改bashrc的PATH时候,有时候新装软件,需要修改环境变量,可能添加了export,然后忘记添加$PATH临时修复:export PATH=/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bi永久修复:export PATH=/usr/local/cuda-10.2/bin:$PATH //少了末尾
2021-08-18 16:10:38
4835
2
原创 [enforce fail at inline_container.cc:137] . PytorchStreamReader failed reading zip archive:解决方法
pytorch 或者libtorch报错详细如下terminate called after throwing an instance of 'c10::Error' what(): [enforce fail at inline_container.cc:137] . PytorchStreamReader failed reading zip archive: failed finding central directoryframe #0: c10::ThrowEnforceNotMet(
2021-08-12 17:34:46
2693
5
VGG_ILSVRC_16_layers_fc_reduced.caffemodel
2019-10-09
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人