-
Notifications
You must be signed in to change notification settings - Fork 188
Installation
JonasR edited this page Jan 29, 2022
·
4 revisions
bjoern can simply be installed using pip install bjoern or python setup.py install.
- Linux or macOS. Windows is not supported.
- Python installation with headers ("development package")
- libev with headers
- a C compiler (tested with GCC and Clang)
- Arch Linux
- Headers come with all packages on Arch Linux, so you'll only need
python3(orpython2). - Ubuntu
-
apt-get install python3-dev(orpython2-dev) - Fedora, CentOS
-
dnf install python3-devel(orpython2-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
- 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
- Arch Linux
pacman -S gcc- Ubuntu
- Ubuntu should come with gcc preinstalled.
- Fedora, CentOS
dnf install gcc