Replies: 1 comment 1 reply
-
Hi @wojtase1 By default, we scan for libslurm.so in For example, if you compiled and installed Slurm from source like this: cd slurm-src
./configure --prefix=/opt/slurm
make install Then you will need to tell pyslurm that the slurm installation can be found in export SLURM_INCLUDE_DIR=/opt/slurm/include
export SLURM_LIB_DIR=/opt/slurm/lib Hope that helps :) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to get slurm running on a cluster of raspberry pis. I have installed slurm and got it running and wanted to experiment with this python library. So I downloaded the library and when I tried to install it I found that the includes and libslurm.so were not installed? Seemed strange so i downloaded the slurm source code compiled it and was able to create libslurm.so but now when trying to install pyslurm it wants the include directory? What include directory is it looking for. I got a warning that it could not find
"slurm_version.h" and I have searched my entire machine and I am unable to find it. Any ideas?
Beta Was this translation helpful? Give feedback.
All reactions