Skip to content

Commit 9095618

Browse files
[bugfix][docs][#163] Update jack setup script to use https, update libzmq-dev libzmq3-dev
re: #163
1 parent 96eb59b commit 9095618

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

autopilot/setup/scripts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
'text': 'install system packages necessary for autopilot Pilots? (required if they arent already)',
5050
'commands': [
5151
"sudo apt-get update",
52-
"sudo apt-get install -y build-essential cmake git python3-dev libatlas-base-dev libsamplerate0-dev libsndfile1-dev libreadline-dev libasound-dev i2c-tools libportmidi-dev liblo-dev libhdf5-dev libzmq-dev libffi-dev",
52+
"sudo apt-get install -y build-essential cmake git python3-dev libatlas-base-dev libsamplerate0-dev libsndfile1-dev libreadline-dev libasound-dev i2c-tools libportmidi-dev liblo-dev libhdf5-dev libzmq3-dev libffi-dev",
5353
]
5454
},
5555
'env_terminal': {
@@ -125,7 +125,7 @@
125125
'type': 'bool',
126126
'text': 'Install jack audio from source, try this if youre having compatibility or runtime issues with jack (required if AUDIOSERVER == jack)',
127127
'commands': [
128-
"git clone git://github.com/jackaudio/jack2 --depth 1",
128+
"git clone https://github.com/jackaudio/jack2 --depth 1",
129129
"cd jack2",
130130
"./waf configure --alsa=yes --libdir=/usr/lib/arm-linux-gnueabihf/",
131131
"./waf build -j6",

docs/guide/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ in the guided installation of Autopilot. (``python -m autopilot.setup.run_script
6262
libportmidi-dev \
6363
liblo-dev \
6464
libhdf5-dev \
65-
libzmq-dev \
65+
libzmq3-dev \
6666
libffi-dev
6767

6868

0 commit comments

Comments
 (0)