-
-
Notifications
You must be signed in to change notification settings - Fork 409
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fd1fe52
commit 5c1a8a0
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
export PYTHONIOENCODING=UTF8 | ||
if test -e $HOME/miniconda/bin; then | ||
echo "miniconda already installed."; | ||
echo "miniconda already installed."; | ||
export PATH=$HOME/miniconda/bin:$PATH | ||
hash -r | ||
#conda update --yes conda | ||
|
||
else | ||
wget $MINICONDA_URL -O miniconda.sh | ||
chmod +x miniconda.sh | ||
rm -r $HOME/miniconda | ||
bash miniconda.sh -b -p $HOME/miniconda | ||
|
||
export PATH=$HOME/miniconda/bin:$PATH | ||
hash -r | ||
conda update --yes conda | ||
fi | ||
fi |