diff options
-rw-r--r-- | md/writeup/bladerf_quick_guide.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/md/writeup/bladerf_quick_guide.md b/md/writeup/bladerf_quick_guide.md index 19af38d..4321fc2 100644 --- a/md/writeup/bladerf_quick_guide.md +++ b/md/writeup/bladerf_quick_guide.md @@ -176,6 +176,25 @@ Run vsim command from where its located inside the quartus install directory ./vsim ``` +## Installing python bindings + +When tried to install bladerf python bindings got this, command below helped +to resolve and install libraries. + +```bash + File "/home/python/venv/lib/python3.12/site-packages/pkg_resources/__init__.py", line 2172, in <module> + register_finder(pkgutil.ImpImporter, find_on_path) + ^^^^^^^^^^^^^^^^^^^ +AttributeError: module 'pkgutil' has no attribute 'ImpImporter'. Did you mean: 'zipimporter'? + +``` + +python -m ensurepip --upgrade + +python3.12 -m pip install --upgrade setuptools + +python3.12 setup.py install + ## Links |