v1.0.10: Cross-Platform Pip Detection
�� Cross-Platform Fix
Smart Pip Command Detection
The update command now automatically detects the correct pip command for your system!
The Problem:
- Windows:
python3 -m pipdoesn't work (nopython3command) - Some Linux/Mac:
pipdoesn't exist (onlypip3orpython3 -m pip) - Update command was hardcoded to
python3 -m pip, breaking on Windows
The Fix:
The update command now tries these in order:
- ✅
pip(most common, especially Windows) - ✅
pip3(common on Linux/Mac) - ✅
python -m pip(Windows fallback) - ✅
python3 -m pip(Linux/Mac fallback)
Uses the first one that works!
🎯 What This Means
Windows users:
ai-journal-kit updatenow works! 🎉- Uses
pip install --upgradeautomatically
Linux/Mac users:
- Already worked, but now more robust
- Handles edge cases where
pipisn't in PATH
Everyone:
- Error messages now show the correct command for YOUR system
- Better cross-platform compatibility
�� Upgrade
# On Windows
pip install --upgrade ai-journal-kit
# On Linux/Mac
pip3 install --upgrade ai-journal-kit
# or
python3 -m pip install --upgrade ai-journal-kitAfter upgrading, ai-journal-kit update will work on any platform! ✨
Full Changelog: v1.0.9...v1.0.10