Skip to content

Instantly share code, notes, and snippets.

View mindthink's full-sized avatar
🎯
Focusing

mindthink mindthink

🎯
Focusing
View GitHub Profile
@mindthink
mindthink / setup-zeromq.sh
Created April 23, 2021 12:46 — forked from hstm/setup-zeromq.sh
Setup zeromq in Ubuntu 16.04/Windows Subsystem for Linux (WSL)
#!/bin/bash
# Ref http://zeromq.org/intro:get-the-software
wget https://github.com/zeromq/libzmq/releases/download/v4.2.3/zeromq-4.2.3.tar.gz
# Unpack
tar xvzf zeromq-4.2.3.tar.gz
# Install dependencies
sudo apt-get update && \