Skip to content
This repository has been archived by the owner on Jul 14, 2023. It is now read-only.

Latest commit

 

History

History
36 lines (26 loc) · 1009 Bytes

installing-from-source.md

File metadata and controls

36 lines (26 loc) · 1009 Bytes

Installing from source

Some users may want to clone and install the graphite-cli from source.

You'll need git, the latest version of Node.js for your platform and NPM.

Clone & build the Graphite CLI:

git clone https://github.com/withgraphite/graphite-cli
cd graphite-cli
# git checkout v0.19.2 (we recommend building from the latest version tag, but this step is optional!)
yarn install
yarn build

If you want to install the tool globally:

npm link

Or if you want to install it locally, perhaps just for one user, this can be done by setting a prefix before running npm link:

echo "prefix = \"$PWD/.npm-prefix\"" >> .npmrc
npm link

# This has installed `gt` (and its aliases) into `$PWD/.npm-prefix`, which
# you'll now need to add to your `$PATH`. One way to do that is to add it to
# your `.bashrc` (or equivalent for your shell):

echo "" >> $HOME/.bashrc
echo "# Graphite CLI" >> $HOME/.bashrc
echo "export PATH=\$PATH:$PWD/.npm-prefix" >> $HOME/.bashrc