Skip to content
JonasR edited this page Jan 29, 2022 · 4 revisions

How to install

bjoern can simply be installed using pip install bjoern or python setup.py install.

Requirements

  • Linux or macOS. Windows is not supported.
  • Python installation with headers ("development package")
  • libev with headers
  • a C compiler (tested with GCC and Clang)

Python development package

Arch Linux
Headers come with all packages on Arch Linux, so you'll only need python3 (or python2).
Ubuntu
apt-get install python3-dev (or python2-dev)
Fedora, CentOS
dnf install python3-devel (or python2-devel)
macOS (using homebrew)
brew install python (Note python2 is no longer part of recent MacOS versions and brew also no longer supports python2)
Your Contribution Here
Fork me and send a pull request

libev

Arch Linux
pacman -S libev
Ubuntu
apt-get install libev-dev
Fedora, CentOS
dnf install libev-devel
macOS (using homebrew)
brew install libev
Your Contribution Here
Fork me and send a pull request

C compiler

Arch Linux
pacman -S gcc
Ubuntu
Ubuntu should come with gcc preinstalled.
Fedora, CentOS
dnf install gcc
Clone this wiki locally