This file contains hidden or 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
#!/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 |
This file contains hidden or 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
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/* |
OlderNewer