10 2022 档案

摘要:基本操作 安装vagrant 安装vmware-utility 配置环境变量 下载vmware-desktop插件 vagrant plugin install vagrant-vmware-desktop 下载centos7-box https://mirrors.ustc.edu.cn/cent 阅读全文
posted @ 2022-10-27 20:43 七つ一旋桜 阅读(724) 评论(0) 推荐(0)
摘要:准备 这个库需要nightly版本的rust,因此需要切换到nightly rustup toolchain install nightly # 下载nightly版本 rustup override set nightly # 临时切换 rustup default nightly # 将默认版本 阅读全文
posted @ 2022-10-17 13:36 七つ一旋桜 阅读(97) 评论(0) 推荐(0)
摘要:# 依赖 ```go import ( sq "github.com/Masterminds/squirrel" _ "github.com/go-sql-driver/mysql" "github.com/jmoiron/sqlx" ) ``` 定义数据实体 ```go type User str 阅读全文
posted @ 2022-10-12 12:25 七つ一旋桜 阅读(497) 评论(0) 推荐(0)
摘要:默认的toolchain是stable-x86_64-pc-windows-msvc 也可以使用stable-x86_64-pc-windows-gnu gnu结尾的需要mingw32 默认的需要vs c++ build tool rustup install <toolchain> # toolc 阅读全文
posted @ 2022-10-10 23:09 七つ一旋桜 阅读(182) 评论(0) 推荐(0)
摘要:```shell git clone https://github.com/ultralytics/yolov5 cd yolov5 pip install -r requirements.txt ``` 然后是去roboflow下载数据集 里面一般解压完会有一个data.yaml,要在里面修改两个 阅读全文
posted @ 2022-10-06 13:59 七つ一旋桜 阅读(51) 评论(0) 推荐(0)