Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated installation scripts #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions linux_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@

# Download and unzip Eigen because Eigen does ont have an official github repo
# that we can add as a submodule.
wget http://bitbucket.org/eigen/eigen/get/3.3.4.zip --header "Referer: bitbucket.org"
wget https://gitlab.com/libeigen/eigen/-/archive/3.3.4/eigen-3.3.4.zip --header "Referer: gitlab.com"

unzip 3.3.4.zip -d externals

unzip eigen-3.3.4.zip -d externals
# Rename the folder.
mv externals/eigen-eigen-5a0156e40feb externals/eigen
rm 3.3.4.zip
mv externals/eigen-3.3.4 externals/eigen
rm eigen-3.3.4.zip

# Download and unzip GLEW because building from the source is a huge pain, as
# suggested in their website.
Expand Down
8 changes: 4 additions & 4 deletions macos_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

# Download and unzip Eigen because Eigen does ont have an official github repo
# that we can add as a submodule.
curl -LOk http://bitbucket.org/eigen/eigen/get/3.3.4.zip
unzip 3.3.4.zip -d externals
curl -LOk https://gitlab.com/libeigen/eigen/-/archive/3.3.4/eigen-3.3.4.zip
unzip eigen-3.3.4.zip -d externals
# Rename the folder.
mv externals/eigen-eigen-5a0156e40feb externals/eigen
rm 3.3.4.zip
mv externals/eigen-3.3.4 externals/eigen
rm eigen-3.3.4.zip

# Download and unzip GLEW because building from the source is a huge pain, as
# suggested in their website.
Expand Down