This guide will get you started with perception models. Each of the projects you can choose from will have you exploring perception models of different sorts.
-
Install the
poetry
dependency manager:curl -sSL https://install.python-poetry.org | python3 -
-
Clone the
avdev-sandbox
.
git clone https://github.com/avstack-lab/avdev-sandbox.git --recurse-submodules
-
Install the python environment in the
avdev-sandbox
withpoetry install
. -
Verify that some of the examples work:
-
Execute some of the basic tests to verify it works.
cd examples/hello_world
poetry run python hello_import.py
- If you install poetry but your systems says it is not found, you may need to add the poetry path to your path. On linux, this would be:
export PATH="$HOME/.local/bin:$PATH"
. I recommend adding this to your.bashrc
or.zshrc
file. - Through an ssh connection, poetry may have keyring issues. If this is true, you can run the following:
export PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring