mirror of
http://shenjack.top:5100/shenjack/icalingua-python-bot.git
synced 2024-11-23 20:45:06 +08:00
19 lines
311 B
Rust
19 lines
311 B
Rust
|
use std::env;
|
||
|
|
||
|
// 指定 pyo3 的绑定对象
|
||
|
fn pyo3_config() {
|
||
|
// PYO3_PYTHON=xxxx
|
||
|
#[cfg(windows)]
|
||
|
{
|
||
|
env::set_var("PYO3_PYTHON", "python3.10")
|
||
|
}
|
||
|
// wsl
|
||
|
#[cfg(target_os = "linux")]
|
||
|
{
|
||
|
env::set_var("PYO3_PYTHON", "python3.10")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
pyo3_config();
|
||
|
}
|