Closed inphosec closed 4 months ago
Rather than running launch.py, try streamlit run Concierge.py
I get "command not found" running steamlit. Is it something I may need to install as well?
┌──(kali㉿kali)-[~/concierge] └─$ streamlit run Concierge.py streamlit: command not found
I recommend first ensuring that install.py completes successfully, then running through the documented manual processes if it doesn't. I had to do a mostly manual setup and launch for it to get up and running, and also had to update my CUDA drivers before everything worked as expected.
Thank you. I'll try your suggestions.
I get "command not found" running steamlit. Is it something I may need to install as well?
Try entering the python virtual environment before running the streamlit command.
The "Usage:manual" section suggests entering the "python virtual environment" first:
source ./bin/activate
and then start the web UI:
streamlit run Concierge.py
Hello, we're aware of the missing script_builder
module issue, a fix has been implemented in 0.2.0 which is coming soon.
I have it running on Arch I had to do the manual install: Setup: manual
If install.py did not work, follow these steps to setup your system.
python -m venv . create a python virtual environment in the current directory.
Linux: source ./bin/activate / Windows PowerShell: .\Scripts\Activate.ps1 enter into the virtual environment.
pip install -r requirements.txt install all dependencies.
copy .env.example into a file named .env and set the folder on your computer that will contain the concierge data.
docker compose up -d will load the docker dependencies.
docker compose -f docker-compose-gpu.yml up -d will load the docker dependencies and use the GPU.
0.3.0 should fix current installation issues.
The Concierge install seemed to go ok. However, when I try to launch it, I get a Module Not Found error.
└─$ python3 launch.py
from script_builder.util import get_venv_executable
ModuleNotFoundError: No module named 'script_builder'
Traceback (most recent call last): File "/home/kali/concierge/concierge_installer/launcher.py", line 2, in
I installed this on Kali Linux (version 2024.1).