Skip to content

Commit

Permalink
Fix broken links of Anaconda install scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
pazeshun committed Jan 23, 2025
1 parent a468d3e commit 13daf90
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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

0 comments on commit 13daf90

Please sign in to comment.