rc is a go package providing apiexplorer a command line program run from a shell like Bash.
This is generalized instructions for a release. For deployment suggestions see NOTES.md
Compiled versions are available for Mac OS X (amd64 processor, macosx-amd64), Linux (amd64 process, linux-amd64), Windows (amd64 processor, windows-amd64) and Rapsberry Pi (arm7 processor, raspbian-arm7)
VERSION_NUMBER is a symantic version number (e.g. v0.1.2)
For all the released version go to the project page on Github and click latest release
Platform | Zip Filename |
---|---|
Windows | rc-VERSION_NUMBER-windows-amd64.zip |
Mac OS X | rc-VERSION_NUMBER-macosx-amd64.zip |
Linux/Intel | rc-VERSION_NUMBER-linux-amd64.zip |
Raspbery Pi | rc-VERSION_NUMBER-raspbian-arm7.zip |
export PATH="$HOME/bin:$PATH"
)Here’s an example of the commands run in the Terminal App after downloading the zip file.
cd Downloads/
unzip rc-*-macosx-amd64.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
apiexplorer -version
Here’s an example of the commands run in from the Bash shell on Windows 10 after downloading the zip file.
cd Downloads/
unzip rc-*-windows-amd64.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
apiexplorer -version
Here’s an example of the commands run in from the Bash shell after downloading the zip file.
cd Downloads/
unzip rc-*-linux-amd64.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
apiexplorer -version
Released version is for a Raspberry Pi 2 or later use (i.e. requires ARM 7 support).
Here’s an example of the commands run in from the Bash shell after downloading the zip file.
cd Downloads/
unzip rc-*-raspbian-arm7.zip
mkdir -p $HOME/bin
cp -v bin/* $HOME/bin/
export PATH=$HOME/bin:$PATH
apiexplorer -version
rc is “go gettable”. Use the “go get” command to download the dependant packages as well as rc’s source code.
go get -u github.com/caltechlibrary/rc/...
Or clone the repstory and then compile
cd
git clone https://github.com/caltechlibrary/rc src/github.com/caltechlibrary/rc
cd src/github.com/caltechlibrary/rc
make
make test
make install