From 513c03a764e968807e47fb69184f78a838fba6b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Walstr=C3=B6m?= Date: Tue, 15 Apr 2025 09:12:09 +0200 Subject: [PATCH] statd: Add script to install yang-tools locally (under /home) This to be able to run statd locally on your computer. --- src/statd/python/local_install.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 src/statd/python/local_install.sh diff --git a/src/statd/python/local_install.sh b/src/statd/python/local_install.sh new file mode 100755 index 00000000..f3f53d6d --- /dev/null +++ b/src/statd/python/local_install.sh @@ -0,0 +1,5 @@ +#!/bin/bash +# installs yanger-tools locally on your computer +poetry build +pip install --break-system-packages --user --force-reinstall dist/infix_yang_tools-1.0-py2.py3-none-any.whl +rm -rf dist