diff options
author | Arturs Artamonovs <dos21h@gmail.com> | 2025-06-26 01:35:14 +0100 |
---|---|---|
committer | Arturs Artamonovs <dos21h@gmail.com> | 2025-06-26 01:35:14 +0100 |
commit | 8e535cf3e717474bc7365bf08d888d4921011767 (patch) | |
tree | b2f713ecf77a4a0fde62f48cda9c966e207c9750 | |
parent | 6b1c7e6a4de9c4e3d703da6f6b015c9a681d053b (diff) | |
download | md-content-8e535cf3e717474bc7365bf08d888d4921011767.tar.gz md-content-8e535cf3e717474bc7365bf08d888d4921011767.zip |
update bladerf quick guide
-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 |