Windows 下安装 diesel cli
Published 8/6/2020
Views 88
1. SQLite 安装
- SQLite 网站下载预编译二进制,解压到譬如
C:\lib
。 - 通过
.dll
、.def
文件转换出.lib
文件:- 找到 VS 安装目录下的
lib.exe
,我的在C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.26.28801\bin\Hostx64\x64\lib.exe
。 - 运行
lib.exe /DEF:sqlite3.def
- 找到 VS 安装目录下的
- 设置环境变量:
$env:SQLITE3_LIB_DIR="C:\lib\"
2. Postgres 安装
- 安装 postgres
- 设置环境变量:
$env:PQ_LIB_DIR="C:\Program Files\PostgreSQL\12\lib"
3. Diesel 安装
cargo install diesel_cli --force --no-default-features --features "postgres sqlite"
本作品采用 知识共享 署名-非商业性使用-禁止演绎 4.0 国际许可协议 进行许可
0 comments