Skip to content

Instantly share code, notes, and snippets.

View eonu's full-sized avatar

Edwin (Ed) Onuonga eonu

View GitHub Profile
@giswqs
giswqs / build-conda-package
Last active March 2, 2021 02:02
Building a conda package and uploading it to Anaconda Cloud
#!/bin/bash
# change the package name to the existing PyPi package you would like to build and adjust the Python versions
pkg='whitebox'
array=( 3.5 3.6 3.7 )
echo "Building conda package ..."
cd ~
conda skeleton pypi $pkg
cd $pkg
@barbietunnie
barbietunnie / openjdk8-debian.sh
Created May 4, 2020 18:50
Install openjdk-8-jdk-headless on Debian
echo 'deb http://ftp.au.debian.org/debian/ stretch main contrib non-free' > /etc/apt/sources.list.d/stretch.list
apt-get update
apt-get install -y --no-install-recommends openjdk-8-jdk-headless
rm /etc/apt/sources.list.d/stretch.list
apt-get clean
rm -rf /var/lib/apt/lists/*