-
Notifications
You must be signed in to change notification settings - Fork 121
Installing PySlurm
Giovanni Torres edited this page Aug 26, 2017
·
2 revisions
PySlurm requires Cython to compile. There are a few ways to get Cython on your system:
On RedHat/CentOS:
sudo yum install Cython
On Fedora:
sudo dnf install Cython
On Debian/Ubuntu:
sudo apt-get install Cython
Assuming Slurm libraries and headers are installed in the usual locations (/usr/include/, /usr/lib64):
python setup.py build
sudo python setup.py install
Intro
Getting Started
Development
- Running a local user installation
- Testing PySlurm with Docker
- Continuous Integration
- Updating PySlurm for New Slurm Releases
- Using latest version of Cython
- Strings and bytes in Cython
- Profiling PySlurm
- Checking for memory leaks
- Do's and Dont's
- Slurm shell completion
Contributing