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

Fix broken links of Anaconda install scripts #2774

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
4 changes: 2 additions & 2 deletions demos/grasp_fusion/.make/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ set -e
echo_bold "==> Installing Anaconda"
if [ "$PYTHONVERSION" = "3" ]; then
if [ ! -e $ROOT/.anaconda3 ]; then
curl -L https://github.com/wkentaro/dotfiles/raw/master/local/bin/install_anaconda3.sh | bash -s $ROOT
curl -L https://github.com/wkentaro/dotfiles/raw/f5151644cdb8a0503e8d1d33ad40ca5a7c73b14b/local/bin/install_anaconda3.sh | bash -s $ROOT
fi
ln -fs $ROOT/.anaconda3 $ROOT/.anaconda
else
if [ ! -e $ROOT/.anaconda2 ]; then
curl -L https://github.com/wkentaro/dotfiles/raw/master/local/bin/install_anaconda2.sh | bash -s $ROOT
curl -L https://github.com/wkentaro/dotfiles/raw/f5151644cdb8a0503e8d1d33ad40ca5a7c73b14b/local/bin/install_anaconda2.sh | bash -s $ROOT
fi
ln -fs $ROOT/.anaconda2 $ROOT/.anaconda
fi
Expand Down
4 changes: 2 additions & 2 deletions demos/grasp_prediction_arc2017/.make/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ set -e
echo_bold "==> Installing Anaconda"
if [ "$PYTHONVERSION" = "3" ]; then
if [ ! -e $ROOT/.anaconda3 ]; then
curl -L https://github.com/wkentaro/dotfiles/raw/master/local/bin/install_anaconda3.sh | bash -s $ROOT
curl -L https://github.com/wkentaro/dotfiles/raw/f5151644cdb8a0503e8d1d33ad40ca5a7c73b14b/local/bin/install_anaconda3.sh | bash -s $ROOT
fi
ln -fs $ROOT/.anaconda3 $ROOT/.anaconda
else
if [ ! -e $ROOT/.anaconda2 ]; then
curl -L https://github.com/wkentaro/dotfiles/raw/master/local/bin/install_anaconda2.sh | bash -s $ROOT
curl -L https://github.com/wkentaro/dotfiles/raw/f5151644cdb8a0503e8d1d33ad40ca5a7c73b14b/local/bin/install_anaconda2.sh | bash -s $ROOT
fi
ln -fs $ROOT/.anaconda2 $ROOT/.anaconda
fi
Expand Down
4 changes: 2 additions & 2 deletions demos/instance_occlsegm/.make/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ set -e
echo_bold "==> Installing Anaconda"
if [ "$PYTHONVERSION" = "3" ]; then
if [ ! -e $ROOT/.anaconda3 ]; then
curl -L https://github.com/wkentaro/dotfiles/raw/master/local/bin/install_anaconda3.sh | bash -s $ROOT
curl -L https://github.com/wkentaro/dotfiles/raw/f5151644cdb8a0503e8d1d33ad40ca5a7c73b14b/local/bin/install_anaconda3.sh | bash -s $ROOT
fi
ln -fs $ROOT/.anaconda3 $ROOT/.anaconda
else
if [ ! -e $ROOT/.anaconda2 ]; then
curl -L https://github.com/wkentaro/dotfiles/raw/master/local/bin/install_anaconda2.sh | bash -s $ROOT
curl -L https://github.com/wkentaro/dotfiles/raw/f5151644cdb8a0503e8d1d33ad40ca5a7c73b14b/local/bin/install_anaconda2.sh | bash -s $ROOT
fi
ln -fs $ROOT/.anaconda2 $ROOT/.anaconda
fi
Expand Down
Loading