tauri:server 时报错 该版本的 %1 与你运行的 Windows 版本不兼容。请查看计算机的系统信息,然后联系软件发布者,该怎么解决?

在初次创建tauri app项目时;
在运行 npm run tauri:serve 时报错:

 Note that the development build is not optimized.

To create a production build, run yarn build.

Finished dev [unoptimized + debuginfo] target(s) in 6.44s

thread '<unnamed>' panicked at 'called `Result::unwrap()` on an `Err` value: Os { code: 216, kind: Uncategorized, message: "该版本的 %1 与你运行的 Windows 版本不兼容。请查看计算机的系统信息,然后联系软件发布者。" }', src\interface\rust\desktop.rs:47:63

note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

创建项目的方式:

vue create my-tauri-app

cd my-tauri-app

vue add tauri

npm run tauri:serve


回答:

可能是由于你使用的Tauri版本与你的Windows系统版本不兼容所导致的确保你的操作系统已更新到最新版本。检查你的Rust编译器是否为最新版本。可以通过在命令行中运行以下命令来查看和更新Rust编译器:
rustup update
如果你没安装Rust,可以按照看看官方文档(https://www.rust-lang.org/tools/install )再安装一下。

确保Tauri依赖项已更新至最新版本。可以通过修改tauri.conf.json中的tauri字段中的dependencies部分来实现。例如,将Tauri CLI和Tauri核心的版本设置为latest:

"tauri": {

...

"dependencies": {

"tauri": "latest",

"tauri-core": "latest"

},

...

}

然后运行npm install或yarn install以更新依赖项。

重新运行npm run tauri:serve或yarn tauri:serve,看看你的问题是否解决了。

以上是 tauri:server 时报错 该版本的 %1 与你运行的 Windows 版本不兼容。请查看计算机的系统信息,然后联系软件发布者,该怎么解决? 的全部内容, 来源链接: utcz.com/p/933897.html

回到顶部