Manual Rollback Guide¶
If an upgrade fails or causes issues, follow these steps to restore WhisperJAV to a working state.
Quick Reference¶
| Scenario | Solution |
|---|---|
| Upgrade failed mid-way | Option A: Reinstall specific version |
| New version has bugs | Option A: Reinstall specific version |
| Complete corruption | Option B: Fresh install |
| Can't run Python at all | Option B: Fresh install |
Option A: Reinstall Specific Version¶
Use this if Python still works but WhisperJAV is broken.
Step 1: Open Command Prompt¶
- Press
Win + R - Type
cmdand press Enter
Step 2: Navigate to WhisperJAV¶
Step 3: Reinstall the version you want¶
To reinstall latest stable:
To install a specific version (e.g., v1.7.3):
python.exe -m pip install --force-reinstall git+https://github.com/meizhong986/whisperjav.git@v1.7.3
Available version tags:
- v1.7.4 - Latest
- v1.7.3 - Previous stable
- v1.7.2, v1.7.1, v1.7.0 - Older versions
Step 4: Verify installation¶
Option B: Fresh Install¶
Use this if the Python environment is completely broken.
Step 1: Uninstall WhisperJAV¶
- Open Settings → Apps → Apps & features
- Search for "WhisperJAV"
- Click Uninstall
Or manually delete:
Step 2: Download fresh installer¶
Go to WhisperJAV Releases and download the latest .exe installer.
Step 3: Run the installer¶
The installer will create a fresh environment with all dependencies.
Preserving Your Data¶
Your AI models and cache are stored separately and survive reinstallation:
| Data | Location | Preserved? |
|---|---|---|
| Whisper models | ~/.cache/whisper/ |
Yes |
| HuggingFace models | ~/.cache/huggingface/ |
Yes |
| WhisperJAV config | %LOCALAPPDATA%\WhisperJAV\whisperjav_config.json |
Deleted on uninstall |
To preserve config before uninstall:
Common Issues¶
"pip is not recognized"¶
Your PATH is not set correctly. Use the full path:
"Permission denied"¶
Close all WhisperJAV windows and try again. If still failing:
1. Open Task Manager (Ctrl+Shift+Esc)
2. End any python.exe or pythonw.exe processes from WhisperJAV
3. Try the command again
"Network error"¶
Check your internet connection. If behind a proxy:
Getting Help¶
If none of the above works:
- Open an issue at GitHub Issues
- Include:
- What you were doing when it broke
- Error messages (screenshot or copy-paste)
- Windows version
- Output of:
python.exe --version