摘要: try pip install "tensorflow[and-cuda]" 用其他方法总有奇奇怪怪的报错 来源 https://stackoverflow.com/questions/78131853/no-matches-found-tensorflowand-cuda 阅读全文
posted @ 2024-03-14 01:34 woodx 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 参考https://onlinux.systems/guides/20230523_how-to-install-and-set-up-terminator-and-oh-my-zsh-on-ubuntu-2304/ trouble-shooting: sh -c "$(curl -fsSL htt 阅读全文
posted @ 2024-03-03 17:43 woodx 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 参考 https://bbs.huaweicloud.com/blogs/412011 阅读全文
posted @ 2024-02-24 11:30 woodx 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 想装下node.js,结果ubuntu输入apt update环境炸了,原因是google的GPG key更新了 报错 (base) woodx@Machine:~$ sudo apt updateGet:1 file:/var/cudnn-local-repo-ubuntu1804-8.8.1.3 阅读全文
posted @ 2024-02-18 23:35 woodx 阅读(132) 评论(0) 推荐(0) 编辑
摘要: llm应用框架 langchain and llamaindex 着重的视频资源 langchain 视频https://python.langchain.com/docs/additional_resources/youtube llama index视频https://docs.llamaind 阅读全文
posted @ 2024-02-04 16:36 woodx 阅读(6) 评论(0) 推荐(0) 编辑
摘要: tmux 这个工具的优势在于,如果ssh连接中断了,并不会中断宿主机上的任务 ubuntu下下载 sudo apt install tmux 创建一个新的连接 tmux new -s 新连接名字 退出连接,但是不退出任务 快捷键 Ctrl + B 然后按 D 返回连接 tmux attach -t 阅读全文
posted @ 2024-01-13 15:34 woodx 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 修改或添加文件~/.ssh/config 往config里加入即可,亲测有效 Host github.com Hostname ssh.github.com Port 443 User git 阅读全文
posted @ 2023-09-24 16:14 woodx 阅读(23) 评论(0) 推荐(0) 编辑
摘要: tensorrt 版本8.6 1. 下载依赖模块的源码 /TensorRT$ proxychains4 git submodule update --init --recursive 需要漫长的时间,proxychain4是一个命令行FQ的工具,具体安装配置可以参考其他博客 2. mkdir bui 阅读全文
posted @ 2023-09-24 15:13 woodx 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 因为新版本编译必须使用bazel,所以为了方便我们先使用protobuf老版本protobuf-3.12.2 [下载链接](https://github.com/protocolbuffers/protobuf/releases/download/v3.15.6/protobuf-all-3.15. 阅读全文
posted @ 2023-09-02 20:01 woodx 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 因为muduo是依赖boost库的,因此我们先安装boost库 ## 一、 安装boost库 进入官网[boost官网](https://boostorg.jfrog.io/artifactory/main/release/1.70.0/source/) 下载boost_1_70_0.tar.gz 阅读全文
posted @ 2023-09-02 16:54 woodx 阅读(20) 评论(0) 推荐(0) 编辑