https://github.com/zero-one-group/poc-tauri-python
Proof of Concept using Python as Tauri sidecar.
https://github.com/zero-one-group/poc-tauri-python
Last synced: 3 months ago
JSON representation
Proof of Concept using Python as Tauri sidecar.
- Host: GitHub
- URL: https://github.com/zero-one-group/poc-tauri-python
- Owner: zero-one-group
- Created: 2024-04-03T13:00:12.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-03T14:25:02.000Z (about 2 years ago)
- Last Synced: 2025-01-14T10:55:28.028Z (over 1 year ago)
- Language: HTML
- Size: 25 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# Tauri Python POC
## Quick Start
Read the prerequisites at [Tauri docs](https://tauri.app/v1/guides/getting-started/prerequisites).
You also need Python 3.12 or higher installed on your machine.
1. Install dependencies using yarn: `pnpm install`
2. Run development with command: `pnpm tauri dev`
3. Build executable file: `pnpm tauri build`
> NOTICE: Currently, only macOS with Apple Silicon chips is supported.
## Debugging
### Fix Unsigned Warning (macOS)
> Warning: "Tauri Python" is damaged and can't be opened.
This warning is shown because the build is not signed. Run the following command to suppress this warning:
```sh
xattr -r -d com.apple.quarantine "/Applications/Tauri Python.app"
```