Installing Erlang/OTP
HyperBEAM is built on Erlang/OTP, so you'll need to have Erlang installed on your system.
Building Erlang from Source
For the best compatibility, we recommend building Erlang from source:
git clone https://github.com/erlang/otp.git && \
cd otp && git checkout maint-27 && \
./configure --without-wx --without-debugger --without-observer --without-et && \
make -j$(nproc) && \
sudo make install && \
cd .. && rm -rf otp
This will:
- Clone the Erlang/OTP repository
- Checkout the maintenance branch for version 27
- Configure the build to exclude GUI components (reducing dependencies)
- Build Erlang using all available CPU cores
- Install Erlang system-wide
- Clean up the source directory
Coming Soon.
Verify Installation
You can verify your Erlang installation with:
This should output 27
, indicating the OTP release version.