Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 982 Bytes

INSTALL.md

File metadata and controls

57 lines (36 loc) · 982 Bytes

Install

FUSE

Linux

sudo apt-get install fuse

macOS

Download and install from https://osxfuse.github.io/ or:

brew install fuse

Node.js

Install Node.js from https://nodejs.org/.

IPFS

Install and run the go-ipfs daemon from https://ipfs.io/. I know, I know, but until js-ipfs gets MFS this project is not useable with it.

ipfs daemon

Note, currently your daemon API needs to be running on the default port.

IPFS FUSE

npm install --global ipfs-fuse

You need Python 2 to install, so you might need to tell gyp the path to Python2. For me it looked like this:

npm_config_python=/usr/local/opt/python2/bin/python2 npm i -g ipfs-fuse

Dev

Clone the project and install project dependencies:

npm install

You need Python 2 to install, so you might need to tell gyp the path to Python2. For me it looked like this:

npm_config_python=/usr/local/opt/python2/bin/python2 npm i