-
|
Hi! Trying to use the new version of SLEAP. This is from a fresh install. I tried opening it with the "sleap" command and I get this error: Traceback (most recent call last): Do I need to downgrade Python or install another dependency? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
Hi @cl05e, This sounds like a dependency issue. Do you mind sharing the output of Cheers, Talmo |
Beta Was this translation helpful? Give feedback.
-
|
Hi @cl05e, Thanks for the quick doctor output! That was super helpful -- I can see exactly what's going on. The issue is likely that Because conda's base environment is active, its Qt-related DLLs are in your system PATH and conflict with PySide6's bundled Qt libraries, which prevents them from loading. The fix is to install a uv-managed Python (completely independent from conda) and reinstall SLEAP with it. Run these commands in a terminal: uv python install 3.13 --default
uv tool install sleap -p 3.13 --force(Or however you installed SLEAP if you had GPU dependencies.) Then I'd also strongly recommend preventing conda from auto-activating, since it can cause these kinds of conflicts: conda config --set auto_activate_base false(This won't affect your existing conda environments, it just disables the base one in new terminals. You can always do After that, close and reopen your terminal, then try Let us know if that works for you! Cheers, ❤️ Talmo & Claude 🤖 Extended technical analysisWhat happened: When you ran Relevant doctor output clues:
SLEAP has built-in Qt conflict fixes for macOS and Linux ( |
Beta Was this translation helpful? Give feedback.
this works perfectly! thank you so much @talmo