stencila
v0.34.3
Published
Living documents for reproducible research.
Downloads
106
Readme
Stencila
Welcome to the main entry point to the Stencila ecosystem. This repo contains the stencila command line tool which is the top level 'umbrella' package to use our various libraries.
:sparkles: We are are undergoing a major reboot in this repository (and many of our others) to build a single entry point for reproducible documents. We will deprecate
stencila/cliandstencila/desktopand instead build those binaries here. We will also be deprecating binary builds of our other repositories as they are integrated into this one.
Install
Stencila is available as a pre-compiled, standalone command line tool.
Windows
To install the latest release of the stencila command line tool, download stencila-win-x64.zip for the latest release and place it somewhere on your PATH.
MacOS
To install the latest release of the stencila command line tool to /usr/local/bin just use,
curl -L https://raw.githubusercontent.com/stencila/stencila/master/install.sh | bashTo install a specific version, append -s vX.X.X e.g.
curl -L https://raw.githubusercontent.com/stencila/stencila/master/install.sh | bash -s v0.33.0Or, if you'd prefer to do things manually, download stencila-macos-x64.tar.gz for the latest release and then,
tar xvf stencila-macos-x64.tar.gz
sudo mv -f stencila /usr/local/bin # or wherever you likeLinux
To install the latest release of the stencila command line tool to ~/.local/bin/ just use,
curl -L https://raw.githubusercontent.com/stencila/stencila/master/install.sh | bashTo install a specific version, append -s vX.X.X e.g.
curl -L https://raw.githubusercontent.com/stencila/stencila/master/install.sh | bash -s v0.33.0Or, if you'd prefer to do things manually, or place stencila elsewhere, download stencila-linux-x64.tar.gz for the latest release and then,
tar xvf stencila-linux-x64.tar.gz
mv -f stencila ~/.local/bin/ # or wherever you like