You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to run in Linux I get the error:
ModuleNotFoundError: No module named 'win32com'
Traceback (most recent call last):
File "vintel.py", line 30, in
from vi.ui import viui, systemtray
File "vintel/src/vi/ui/viui.py", line 42, in
from vi.soundmanager import SoundManager
File "vintel/src/vi/soundmanager.py", line 29, in
from win32com.server.util import wrap
ModuleNotFoundError: No module named 'win32com'
The text was updated successfully, but these errors were encountered:
I have the exact same error.
It's caused by a missing python3 module : pywin32, available for Windows only (I can't pip install it)
$ python3 -m pip install pywin32
Collecting pywin32
ERROR: Could not find a version that satisfies the requirement pywin32 (from versions: none)
ERROR: No matching distribution found for pywin32
Traceback (most recent call last):
File "/home/wax/Vintel/src/vintel.py", line 30, in
from vi.ui import viui, systemtray
File "/home/wax/Vintel/src/vi/ui/viui.py", line 42, in
from vi.soundmanager import SoundManager
File "/home/wax/Vintel/src/vi/soundmanager.py", line 29, in
from win32com.server.util import wrap
ModuleNotFoundError: No module named 'win32com'
When attempting to run in Linux I get the error:
ModuleNotFoundError: No module named 'win32com'
Traceback (most recent call last):
File "vintel.py", line 30, in
from vi.ui import viui, systemtray
File "vintel/src/vi/ui/viui.py", line 42, in
from vi.soundmanager import SoundManager
File "vintel/src/vi/soundmanager.py", line 29, in
from win32com.server.util import wrap
ModuleNotFoundError: No module named 'win32com'
The text was updated successfully, but these errors were encountered: