Skip to content

Commit

Permalink
Commited a script bootstrap-conda, which I wrote a long time ago.
Browse files Browse the repository at this point in the history
Just making it easy for the vendors.  ;-)
  • Loading branch information
tesujimath committed Jul 5, 2018
1 parent 499bd5d commit 731e025
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions scripts/bootstrap-conda
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/sh -e
#
# script to bootstrap conda; if conda is already available locally, this is not needed

tmpdir=/tmp/bootstrap-conda$$
trap "rm -rf $tmpdir" EXIT
mkdir $tmpdir
cd $tmpdir

wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
sh ./Miniconda3-latest-Linux-x86_64.sh

0 comments on commit 731e025

Please sign in to comment.