2 个版本
0.0.4 | 2023年9月29日 |
---|---|
0.0.2 | 2023年9月29日 |
#5 在 #venv
1MB
869 行
Gourgeist
Gourgeist 是一个用于创建 Python 虚拟环境的 Rust 库。它还包含命令行界面。
Rust
use camino::Utf8PathBuf;
use gourgeist::{create_venv, get_interpreter_info, parse_python_cli};
let location = cli.path.unwrap_or(Utf8PathBuf::from(".venv"));
let python = parse_python_cli(cli.python)?;
let data = get_interpreter_info(&python)?;
create_venv(&location, &python, &data, cli.bare)?;
CLI
使用 python
作为虚拟环境 .venv
的基础
gourgeist
或使用自定义默认值
gourgeist -p 3.11 my_env
Jessie 的 gourgeist
依赖
~8–21MB
~305K SLoC