mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
15 lines
343 B
Bash
Executable file
15 lines
343 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "Preparing macOS environment"
|
|
sysctl hw.model hw.machine hw.ncpu hw.physicalcpu hw.logicalcpu
|
|
set -e
|
|
set -x
|
|
|
|
brew update
|
|
brew upgrade cmake
|
|
brew install cppzmq openssl@3 python@3 swig bison flex ccache libmaxminddb dnsmasq krb5
|
|
|
|
which python3
|
|
python3 --version
|
|
|
|
python3 -m pip install --user --break-system-packages websockets
|