You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
531 B
26 lines
531 B
#!/bin/bash -e
|
|
|
|
# install brew
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
|
|
|
|
brew install capnp \
|
|
czmq \
|
|
coreutils \
|
|
eigen \
|
|
ffmpeg \
|
|
glfw \
|
|
libarchive \
|
|
libtool \
|
|
llvm \
|
|
pyenv \
|
|
zeromq
|
|
|
|
# install python
|
|
pyenv install -s 3.8.2
|
|
pyenv global 3.8.2
|
|
pyenv rehash
|
|
eval "$(pyenv init -)"
|
|
|
|
pip install pipenv==2018.11.26
|
|
pipenv install --system --deploy
|
|
|
|
|