SumZer0-git / EDAPGui

An Autopilot for Elite Dangerous
MIT License
57 stars 24 forks source link

Getting an issues on the final setup step #61

Open IxDarkPulse opened 2 weeks ago

IxDarkPulse commented 2 weeks ago

when I input the last code for setup i get this,

$ python EDAPGui.py Traceback (most recent call last): File "C:\Users\Tyler\EDAPGui\EDAPGui.py", line 4, in import kthread ModuleNotFoundError: No module named 'kthread'

any help?

Keinta15 commented 2 weeks ago

Just do

pip install kthread

IxDarkPulse commented 2 weeks ago

Just do

pip install kthread

that wotked, but now Im getting the same error for "cv2" and when I run that same command I get

Tyler@TylersComputer MINGW64 ~/EDAPGui (main) $ pip install cv2 Defaulting to user installation because normal site-packages is not writeable ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none) ERROR: No matching distribution found for cv2

Keinta15 commented 2 weeks ago

Cv2 would be opencv_python

Make sure you have all these requirements installed:

auto_mix_prep==0.2.0
colorlog==6.5.0
keyboard==0.13.5
kthread==0.2.2
logger==1.4
mss==8.0.3
numpy==1.25.1
opencv_python==4.5.5.62
Pillow==9.0.1
PyAutoGUI==0.9.53
pynput==1.7.6
pyttsx3==2.90
pywin32==302
requests

You can do pip install for these and it should work

IxDarkPulse commented 2 weeks ago

Cv2 would be opencv_python

Make sure you have all these requirements installed:

auto_mix_prep==0.2.0
colorlog==6.5.0
keyboard==0.13.5
kthread==0.2.2
logger==1.4
mss==8.0.3
numpy==1.25.1
opencv_python==4.5.5.62
Pillow==9.0.1
PyAutoGUI==0.9.53
pynput==1.7.6
pyttsx3==2.90
pywin32==302
requests

You can do pip install for these and it should work Thanks! that worked perfectly!