dirsearch
dirsearch copied to clipboard
Requirements. txt is missing the pkg_resources module
- Download the latest release compressed package
- Unzip the compressed package
- Enter the decompressed path and execute
python -m venv ./venv
- Activate the virtual environment
source venv/bin/activate
- Execute
pip install -r requirements.txt
(the process goes smoothly without any problems) - Execute
python dirsearch.py
and the terminal echoes ModuleNotFoundError: No module named 'pkg_resources' - After understanding that you need to use
pip install setuptools
- Execute
python dirsearch.py
again and find that it can run normally PS: I hope developers can add setuptools to requirements.txt
感谢,已解决