This guide helps resolve common issues during WhisperJAV upgrades.
Error: Disk space: X.X GB available, need 5 GB
Solution:
- Free up disk space on the drive where WhisperJAV is installed
- Delete old files:
%TEMP%\*, browser cache, old downloads - Run Disk Cleanup:
cleanmgr
Error:
Running from: C:\some\other\python
Expected: C:\Users\...\AppData\Local\WhisperJAV
Solution: Run the upgrade script using WhisperJAV's Python:
%LOCALAPPDATA%\WhisperJAV\python.exe upgrade_whisperjav.pyError: GUI check failed: WhisperJAV GUI is running
Solution:
- Close the WhisperJAV GUI window
- If it doesn't close, open Task Manager and end:
pythonw.exe(WhisperJAV GUI)WhisperJAV-GUI.exe
- Try the upgrade again
Error: Network: no connection to GitHub
Solution:
- Check your internet connection
- Try accessing https://github.com in a browser
- If behind a corporate firewall/proxy:
set HTTPS_PROXY=http://your-proxy:port python.exe upgrade_whisperjav.py
Symptoms: Upgrade stops during "Upgrading WhisperJAV package..."
Causes:
- Network timeout
- GitHub temporarily unavailable
- pip cache corruption
Solutions:
-
Retry the upgrade:
python.exe upgrade_whisperjav.py
-
Clear pip cache and retry:
python.exe -m pip cache purge python.exe upgrade_whisperjav.py
-
Use wheel-only mode (if you just need the latest code):
python.exe upgrade_whisperjav.py --wheel-only
Symptoms: Some packages fail to install during dependency phase
Solutions:
- Continue anyway - Most dependency failures are non-fatal
- Install manually:
python.exe -m pip install <package-name>
Symptoms: File operations fail
Solutions:
- Close ALL WhisperJAV windows
- Run upgrade from an elevated command prompt (Run as Administrator)
- Temporarily disable antivirus real-time protection
Symptoms: Desktop shortcut not updated
This is non-fatal. WhisperJAV still works. To fix manually:
- Right-click the desktop shortcut
- Click Properties
- Update the target path
Symptoms: WhisperJAV won't start, shows import errors
Solutions:
-
Reinstall with dependencies:
python.exe -m pip install --force-reinstall git+https://github.com/meizhong986/whisperjav.git@main -
Check for conflicting packages:
python.exe -m pip check
Symptoms: GPU acceleration stopped working
Cause: CPU-only PyTorch was installed over CUDA version
Solution:
REM Check your CUDA version first
nvidia-smi
REM Reinstall CUDA PyTorch (example for CUDA 12.1)
python.exe -m pip install torch torchaudio --index-url https://download.pytorch.org/whl/cu121 --force-reinstallSymptoms: --version shows old version
Solutions:
- Clear Python's import cache:
python.exe -c "import whisperjav; print(whisperjav.__file__)" - Reinstall:
python.exe -m pip install --force-reinstall --no-cache-dir git+https://github.com/meizhong986/whisperjav.git@main
Use with caution - only if you know what you're doing:
python.exe upgrade_whisperjav.py --skip-preflightOnly updates WhisperJAV code, skips all dependencies:
python.exe upgrade_whisperjav.py --wheel-onlyFor scripted upgrades:
python.exe upgrade_whisperjav.py --yesSee Manual Rollback Guide for complete recovery options.
If you encounter an issue not covered here:
- Open GitHub Issues
- Include:
- Full console output from the upgrade attempt
- Windows version (
winver) - Python version (
python.exe --version) - Current WhisperJAV version (if known)