This cross platform - Linux, Mac OS X and Windows - F# .Net library and smartphone app to chart the nine Maya waves of Carl Johan Calleman.
at main 19 lines 805 B view raw
1#!/bin/bash 2# SPDX-License-Identifier: MIT 3# Copyright (C) 2021 Roland Csaszar 4# 5# Project: NineWaves 6# File: postBuild 7# 8################################################################################ 9# script to set up the F#, C# and PowerShell Jupyter Kernels for myBinder 10 11wget https://dot.net/v1/dotnet-install.sh 12chmod 755 dotnet-install.sh 13./dotnet-install.sh -c Current 14~/.dotnet/dotnet tool install Microsoft.dotnet-interactive 15~/.dotnet/dotnet interactive jupyter install 16 17sed -i 's@"dotnet"@"'${HOME}'/.dotnet/dotnet"@' ~/.local/share/jupyter/kernels/.net-csharp/kernel.json 18sed -i 's@"dotnet"@"'${HOME}'/.dotnet/dotnet"@' ~/.local/share/jupyter/kernels/.net-fsharp/kernel.json 19sed -i 's@"dotnet"@"'${HOME}'/.dotnet/dotnet"@' ~/.local/share/jupyter/kernels/.net-powershell/kernel.json