Skip to content

Commit

Permalink
add osx conda setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Mar 28, 2019
1 parent d29e234 commit 1a6cc69
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions scripts/conda/osx-setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
export CONDA_EXE=/Users/hobu/miniconda3/bin/conda

CONDA_ENV="pdal-build"

$CONDA_EXE env remove -n $CONDA_ENV -y
$CONDA_EXE config --add channels conda-forge
$CONDA_EXE create --name $CONDA_ENV -y
source /Users/hobu/miniconda3/bin/activate $CONDA_ENV
$CONDA_EXE install -y laz-perf \
laszip \
libunwind \
geotiff \
jsoncpp \
sqlite \
libxml2 \
nitro \
curl \
gdal \
postgresql \
hdf5 \
pcl \
cmake \
compilers \
libspatialite \
eigen \
ninja \
libgdal \
zstd \
numpy \
tiledb

activate $CONDA_ENV

0 comments on commit 1a6cc69

Please sign in to comment.