I am new to working with tauri, and when I run cargo create-tauri-app it runs the 'setup' and askes for app name, package manager (cargo) and UI template. After choosing the final option, it says permission denied. I tried running the command with sudo but then it says no such subcommand: 'create-tauri-app'.
Asked
Active
Viewed 329 times
0
-
1Probably `create-tauri-app` is not installed on your sudo user. Try `sudo cargo install create-tauri-app`. – Chayim Friedman Dec 24 '22 at 18:49
-
@Chayim Friedman that seemed to fix it, thanks – jason Dec 24 '22 at 20:08