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
Traceback (most recent call last):
File "D:\python\Hacking\Tools\vulnx\vulnx.py", line 17, in <module>
from modules.cli.cli import CLI
File "D:\python\Hacking\Tools\vulnx\modules\cli\cli.py", line 7, in <module>
import readline
ModuleNotFoundError: No module named 'readline'
And when i tried to install readline library i got this Error:
Collecting readline
Downloading readline-6.2.4.1.tar.gz (2.3 MB)
---------------------------------------- 2.3/2.3 MB 593.2 kB/s eta 0:00:00
Preparing metadata (setup.py) ... error
error: subprocess-exited-with-error
x python setup.py egg_info did not run successfully.
│ exit code: 1
?─> [1 lines of output]
error: this module is not meant to work on Windows
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
It clearly mentions that this module is not meant to work on Windows
To Reproduce
Steps to reproduce the behavior:
Clone the repo on windows
run pip install --r requirements.txt
then run python vulnx.py
Desktop (please complete the following information):
Windows 8.1
python 3.11.4
**Something I found that needs to be focused on:**
readline library latest version - 6.2.4.2 (2022-06-24)
THIS PACKAGE IS DEPRECATED! USE gnureadline INSTEAD!
Add appropriate warnings to the docs to hammer this home
Prevent installation on Python 3.4 and later (the module is outdated)
Pyreadline3 is a Python implementation of the GNU Readline library that works on Windows.
Maybe We can write a code where it check the OS and execute accordingly.
importplatformprint(platform.system())
The text was updated successfully, but these errors were encountered:
Describe the bug
And when i tried to install
readline
library i got this Error:It clearly mentions that this module is not meant to work on Windows
To Reproduce
Steps to reproduce the behavior:
pip install --r requirements.txt
python vulnx.py
Desktop (please complete the following information):
**Something I found that needs to be focused on:**
readline library latest version - 6.2.4.2 (2022-06-24)
Pyreadline3 is a Python implementation of the GNU Readline library that works on Windows.
Maybe We can write a code where it check the OS and execute accordingly.
The text was updated successfully, but these errors were encountered: