⚠️ Beta Version NoticeThe desktop application is currently in Beta testing phase with the following known limitations:
- Incomplete compatibility testing: Not fully tested across all system versions and hardware configurations
- Potential performance issues: Startup time, memory usage, and other performance aspects may need further optimization
- Features under development: Some features may be unstable or missing
We welcome your feedback to help improve product quality.
Download: GitHub Releases
This guide explains how to install and use the CoPaw Desktop application on Windows and macOS.
The first launch may take a considerable amount of time (10-60 seconds or more, depending on your system configuration). The application needs to initialize the Python environment, load dependencies, and start the web service. Please be patient while waiting for the window to appear. Subsequent launches will be faster.
- Operating System: Windows 10 or later
- Architecture: x64 (64-bit)
-
Download the installer Download
CoPaw-Setup-<version>.exefrom the Release page -
Run the installer Double-click the
.exefile and follow the installation wizard- Default installation location:
C:\Users\<your-username>\AppData\Local\CoPaw - Desktop and Start Menu shortcuts will be created after installation
- Default installation location:
After installation, you'll see two launch shortcuts:
- Features: Silent launch, no terminal window, clean interface
- Use Case: Normal usage when you don't need to view technical logs
- How to Launch: Double-click the "CoPaw Desktop" icon on desktop or Start Menu
- Technical Note: Uses VBScript launcher, runs Python process in background
- Features: Shows terminal window with real-time logging
- Use Cases:
- Need to view error messages when encountering problems
- Development and testing
- Need to provide logs when reporting bugs
- How to Launch: Double-click "CoPaw Desktop (Debug)" icon in Start Menu
- Log Contents:
- Application startup information
- Python error stack traces
- API call logs
- Press Ctrl+C or close the window to stop the application
Q: Application doesn't respond after launch? A: Use "CoPaw Desktop (Debug)" mode to view terminal output for error messages
Q: How to uninstall? A: Go to Windows Settings → Apps → Installed apps → Find "CoPaw Desktop" → Uninstall
Q: Is the installer safe? A:
- The application is not Microsoft code-signed (costs $200-800/year), so Windows Defender SmartScreen will show a warning
- This is normal behavior; click "More info" → "Run anyway" to proceed
- The code is completely open source, and the build process is transparently verifiable on GitHub Actions
- Operating System: macOS 14 (Sonoma) or later
- Architecture:
- ✅ Apple Silicon (M1/M2/M3/M4) - Recommended, supports MLX local model acceleration
⚠️ Intel chips - May work, but cannot use MLX acceleration features
-
Download the archive Download
CoPaw-<version>-macOS.zipfrom the Release page -
Extract Double-click the
.zipfile to extract and getCoPaw.app -
Move to Applications folder (Optional) Drag
CoPaw.appto the/Applicationsfolder
CoPaw is not Apple Developer-signed or notarized, so macOS Gatekeeper will block it by default.
Why no signature?
- 📋 Developer signing requires additional cost and procedures; will be added in future releases
Current impact:
- ✅ No functional impact: Application runs completely normally
⚠️ First-time manual trust required: One-time operation, permanently effective- 🔒 Security: Open source code is auditable, transparent build process (CI/CD)
- Right-click (or Control + click) on
CoPaw.app - Select "Open" from the menu
- In the dialog that appears, click the "Open" button again
- ✅ After this, you can double-click to launch normally without further prompts
If still blocked:
- Open System Settings → Privacy & Security
- Scroll down to find a message like: "'CoPaw' was blocked from use because it cannot verify the developer"
- Click the "Open Anyway" or "Allow" button
- Enter your administrator password to confirm
# Remove download quarantine attribute
xattr -cr /Applications/CoPaw.appWhen first launched, macOS may request the following permissions:
- Desktop file access permission
Used to access your files (if using file-related features)
- Click "Allow" for normal use
- Click "Don't Allow" and the app will still run, but some features may be limited
- Double-click
CoPaw.appto launch - The app runs in the background and opens a browser window
- Logs are written to:
~/.copaw/desktop.log
If the app crashes or you need to see detailed logs:
# Navigate to the application directory
cd /Applications # or wherever your CoPaw.app is located
# Set environment variables and launch
APP_ENV="$(pwd)/CoPaw.app/Contents/Resources/env"
PYTHONPATH= PYTHONHOME="$APP_ENV" "$APP_ENV/bin/python" -m copaw desktopAdvantages of terminal launch:
- ✅ View all log output in real-time
- ✅ See complete Python error stack traces
- ✅ Convenient for debugging and reporting issues
- ✅ Can add
--log-level debugfor more detailed information
View log file:
# View recent startup logs
tail -f ~/.copaw/desktop.logQ: Nothing happens after double-clicking? A:
- Check the
~/.copaw/desktop.logfile for errors - Use the terminal command above to launch and view real-time output
Q: Message "Apple cannot verify this application"? A: Follow the "Bypassing System Security Restrictions" steps above
Q: How to uninstall?
A: Drag CoPaw.app to the Trash, then delete the ~/.copaw configuration folder
Q: Can I use it on Intel Mac? A: Yes, but you cannot use MLX model acceleration (MLX only supports Apple Silicon)
Q: Why is the app not signed, and why does the system show a risk warning?
A:
Currently using:
- ✅ Open source transparency: All code and build processes are public on GitHub
- ✅ CI/CD verifiable: GitHub Actions automated builds with viewable logs
- ✅ User auditable: You can review the code and build locally yourself
- ✅ One-time trust: Permanently effective after manual trust
- GitHub Issues: Submit an issue
- Packaging documentation:
scripts/pack/README.md- Technical details and local build guide - Log locations:
- Windows: View in Debug mode terminal, or
%USERPROFILE%\.copaw\directory - macOS:
~/.copaw/desktop.log
- Windows: View in Debug mode terminal, or
- Daily use: Use the normal version (no terminal window)
- Troubleshooting: Switch to Debug version to view logs
- First install: Make sure to follow the "Bypassing Security Restrictions" steps
- Debugging issues: Use terminal launch method to view real-time logs
- Permission issues: Allow file access permission on first launch