#python #venv #virtualenv

bin+lib gourgeist

Rust 实现的虚拟环境创建

2 个版本

0.0.4 2023年9月29日
0.0.2 2023年9月29日

#5#venv

MIT/Apache

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

Jessie's gourgeist, a pokemon with a jack o'lantern as body

依赖

~8–21MB
~305K SLoC