OpenSUSE Tumbleweed on HP Z Book Ultra G1a (Ryzen AI MAX 390 + Radeon 8050S) install guide. #5497
Closed
tylerebowers
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
After removing pip build isolation I was having issues with some missing dev libs, the end of my install log looked like:
This compiling error is due to missing libs, far up in the traceback the missing libs can be found:
Each time I installed a lib I found that I would be missing another, so through trial-and-error I got them all installed.
I found that some were not included in the standard repos:
sudo zypper ar https://download.opensuse.org/repositories/science:/GPU:/ROCm/openSUSE_Tumbleweed/science:GPU:ROCm.repoWhile this list may be incomplete, these are probably everything that I needed to install:
sudo zypper in rocm-libs rocm-hip-devel rocthrust-devel rocprim-devel librocsparse1 rocsparse-devel libhipsparse1 libhipsparse1-devel libhipblas2 libhipblas2-devel libhipblaslt0 libhipblaslt0-devel libhipsolver0 libhipsolver0-develThen the build command as usual:
pip install --no-build-isolation 'git+https://github.com/facebookresearch/detectron2.git'I was originally thinking to put this in issues, but I figured it was not appropriate. The downside is that people looking in issues won't be able to find this.
Beta Was this translation helpful? Give feedback.
All reactions