mirror of
https://github.com/GladistonXD/votify-fix.git
synced 2026-04-26 15:05:58 +03:00
[GH-ISSUE #3] No module named websocket #1
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/votify-fix#1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @editedweb on GitHub (Feb 6, 2026).
Original GitHub issue: https://github.com/GladistonXD/votify-fix/issues/3
I'm getting this error after a fresh install:
Traceback (most recent call last):
File "", line 198, in _run_module_as_main
File "", line 88, in run_code
File "C:\Python314\Scripts\votify.exe_main.py", line 2, in
from votify.cli import main
File "C:\Python314\Lib\site-packages\votify\cli.py", line 24, in
from .downloader import Downloader
File "C:\Python314\Lib\site-packages\votify\downloader.py", line 29, in
from .spotify_api import SpotifyApi
File "C:\Python314\Lib\site-packages\votify\spotify_api.py", line 16, in
import websocket
ModuleNotFoundError: No module named 'websocket'
@10ij commented on GitHub (Feb 7, 2026):
this one was easily fixable, for me i uninstalled with
and then reinstalled with pipx, if you don't have it heres how you install it
that should've installed pipx, now you install votify like so
and this bit fixes the issue
there's probably a cleaner method, but this worked for me
@10ij commented on GitHub (Feb 7, 2026):
if you dont want to use pipx, you can simply run
pip install websocket-client@editedweb commented on GitHub (Feb 7, 2026):
Confirmed that fix. I guess it just needs to be fixed in the normal install process :)
@GladistonXD commented on GitHub (Feb 10, 2026):
This has already been added to the installation:
github.com/GladistonXD/votify-fix@d32e26a932