Anyone gotten 5.0.0 to build on Ubuntu 24.10 or 24.04? or Kali? I cannot. #3126
Replies: 3 comments 2 replies
-
Have you installed nodejs and npm? |
Beta Was this translation helpful? Give feedback.
-
You will find the Ubuntu 24.04 installation instructions in the Dockerfile. |
Beta Was this translation helpful? Give feedback.
-
Use virtual env for python: python3 -m venv .venv source .venv/bin/activate This modifies your PATH environment variable to include .venv/bin/. Now you can install PyPI packages using pip into your virtual environment (in this case .venv/) |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm following the readme here, This is the first error I get.
My process to fix.
virtualenv venv
source venv/bin/activate
pip3 install -r requirements.txt
, that completed with no errors.python3 server.py --insecure --build
and get the error below.I get the same error on Ubuntu 24.10 / 24.04, and Kali 2024.4
Any thoughts will be greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions