Gramaddict wont start even though venv and python 3.9.7 are installed. I get this error
Traceback (most recent call last):
File "C:\Program Files\Python39\lib\runpy.py", line 197, in run_module_as_main
return run_code(code, main_globals, None,
File "C:\Program Files\Python39\lib\runpy.py", line 87, in run_code
exec(code, run_globals)
File "C:\Users\User\Desktop\g.venv\Scripts\gramaddict.exe_main.py", line 7, in
Do you have the file structure containing the config.yml file as stated in the docs
The error is being raised when the Python script is trying to run the "adb devices" command using the "os.popen" function.
This error message typically indicates that either the "adb" command is not installed on your system, or that the "adb" command is not in your system's PATH environment variable.
Here are some steps you can try to resolve the issue:
Check if adb is installed: Verify that the Android Debug Bridge (adb) tool is installed on your system by running the "adb" command in the command line. If the adb command is not found, you will need to install it.
Add adb to your PATH: If the adb command is installed, but the operating system cannot find it, you may need to add the directory containing the adb executable to your PATH environment variable. This will allow your operating system to find the adb command when it is run from the command line.
Use the full path to adb: If you are unable to add the adb executable to your PATH environment variable, you can try using the full path to the adb executable in the "os.popen" function. This will ensure that the Python script is able to find the adb executable, even if it is not in the PATH environment variable.