gh repo clone YOUR_REPO_NAME
.venv
at the beginning of your terminal prompt.
meshagent[all]
install command. Installing meshagent[all]
is beneficial because you will get all of the python libraries associated with MeshAgent. If you are installing individual packages with Python you do not need to run the install command with quotes. For example, if you only wanted to install one of the MeshAgent libraries, like the MeshAgent CLI, you would run the command like this:
pip
or pip3
both work. Outside a venv you may need to run pip3
to avoid Python 2 leftovers.
uv run python your_script.py
to automatically use the virtual environment. If your virtual environment is already activated you can also just run python your_script.py
.