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.
27 lines
531 B
27 lines
531 B
5 years ago
|
#!/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
|
||
|
|