2.2 KiB
Ubuntu Instructions
These steps will install the following dependencies:
- go (1.14 or higher)
- gcc (7.4.0 or higher)
- git (version 2 or higher)
- bzr (some go dependency needs this)
- jq
- pkg-config
- opencl-icd-loader
- opencl driver (like nvidia-opencl on arch) (for GPU acceleration)
- opencl-headers (build)
- rustup (proofs build)
- llvm (proofs build)
- clang (proofs build)
Install dependencies
sudo apt update
sudo apt install mesa-opencl-icd ocl-icd-opencl-dev gcc git bzr jq pkg-config curl
sudo apt upgrade
Install Go 1.14
Find the latest version of Go on their website and follow the installation instructions. At the time of writing this document, thats 1.14.4. Extract it to /usr/local
, and add the go binaries to your $PATH
.
wget -c https://dl.google.com/go/go1.14.4.linux-amd64.tar.gz -O - | sudo tar -xz -C /usr/local
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.profile
source ~/.profile
Verify your go installation by running
go version
Install Rust
(this is an interactive installer)
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source ~/.profile
Clone the Lotus repository
git clone https://github.com/filecoin-project/lotus.git
cd lotus/
Build the Lotus binaries from source and install
make clean && make all
sudo make install
After installing Lotus, you can run the lotus
command directly from your CLI to see usage documentation. Next, you can join the Lotus Testnet.
Interopnet
If you seek a smaller network to test, you can join the interopnet
. Please note that this network is meant for developers - it resets much more often, and is much smaller. To join this network, checkout the branch interopnet
instead of master
before building and installing;
git checkout interopnet
Please also note that this documentation (if viewed on the website) might not be up to date with the interopnet. For the latest documentation on the interopnet branch, see the Lotus Documentation Interopnet Branch on GitHub