If you need to install jupyter notebook, you can use the following command:
You can use a one-liner in Unix-like systems (Linux/macOS) like this:
python3 -m venv jupyter_env && source jupyter_env/bin/activate && pip install notebook && jupyter notebook
If you’re on Windows, use the following commands instead:
python -m venv jupyter_env
jupyter_env\Scripts\activate
pip install notebook
jupyter notebook
In your command line, you'll see a localhost link with a token like this: http://localhost:8888/tree?token={}
4.1: Go to https://www.veyrax.com/agent
echo "VEYRAX_API_KEY=$(pbpaste)" > .envecho "VEYRAX_API_KEY=$(xclip -o)" > .envecho "VEYRAX_API_KEY=$(xsel --clipboard --output)" > .env"VEYRAX_API_KEY=$(Get-Clipboard)" | Out-File -Encoding ascii .envYour .env should look like this:
VEYRAX_API_KEY=<clipboard content>

