Hi everyone,
I quickly wrote these instructions on how to install Truffle and testrpc on Ubuntu Linux to test smart contracts before deploying them to an Ethereum Virtual Computer. I made it to help me remember for next time, but perhaps someone else will find it useful as well!
You can install these development tools directly onto your workstation, but I prefer to use an Ubuntu virtual machine running in VirtualBox. This way you can separate your development environment from your general purpose desktop environment. Also, it's safer to test software installations in a virtual machine before installing them on your main workstation.
Installation
First we will install NVM (Node Version Manager), a batch script that can install and manage multiple Node.js versions. You can use the curl command to download and run the installation script for nvm:
sudo curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.4/install.sh | bash
During the installation, you may see some error messages:
Failed to download 'https://raw.githubusercontent.com/creationix/nvm/v0.31.4/nvm-exec'
bash: line 293: /nvm.sh: No such file or directory
You should be able to safely ignore these errors. Close the terminal window and re-open it. Type the command:
nvm
If you see the nvm help, then it has been installed successfully. Now you can install Node.js using NVM:
nvm install 5 (Truffle recommends at least version 5)
Next, we need to install npm (a package manager for Node.js). We will use it to install testrpc and Truffle:
sudo apt-get install npm
Now we can use npm to install testrpc, a Node.js Ethereum client that mimics a real Ethereum node:
npm install -g ethereumjs-testrpc
In order to install Truffle, we also need to install git (and the build-essential package if it's not installed by default).
sudo apt-get install git
sudo apt-get install build-essential
Now we can install Truffle using npm:
sudo npm install -g truffle
Are you getting any error messages? Check the Troubleshooting section below.
Start Testrpc and Initialize Truffle
To start testrpc, open a command terminal and type testrpc. It will run in background and wait for connections.
Next, open a new terminal window, create a project folder, go into it, and initialize Truffle:
mkdir myproject
cd myproject
tuffle init (this command will create a file structure within the current directory)
Now you can test the default Truffle project (MetaCoin) by issuing the command:
truffle test
You should get three passing tests. If so, you've successfully installed Truffle and testrpc!
Troubleshooting
Potential error messages during Truffle installation:
npm ERR! Linux 4.4.0-34-generic
npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "install" "-g" "truffle"
npm ERR! node v4.2.6
npm ERR! npm v3.5.2
npm ERR! file sh
npm ERR! code ELIFECYCLE
npm ERR! errno ENOENT
npm ERR! syscall spawn
npm ERR! [email protected] install: node ./build.js
npm ERR! spawn ENOENT
*npm ERR! *
npm ERR! Failed at the [email protected] install script 'node ./build.js'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
Why is npm reporting node v4.2.6 after we just installed version 5? Ubuntu may come with an older version of nodejs installed by default. Remove it and then try the installation again:
Check if you already have nodejs installed:
nodejs --version
To remove it:
sudo apt-get purge nodejs
Having any other problems installing Truffle? Check out the issues on Github
These instructions are really useful, much appreciated!!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Congratulations @brennanhm! You have completed some achievement on Steemit and have been rewarded with new badge(s) :
Award for the number of upvotes
Click on any badge to view your own Board of Honor on SteemitBoard.
For more information about SteemitBoard, click here
If you no longer want to receive notifications, reply to this comment with the word
STOP
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
thanks for you shering
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Congratulations @brennanhm! You have completed some achievement on Steemit and have been rewarded with new badge(s) :
Award for the number of upvotes
Click on any badge to view your own Board of Honor on SteemitBoard.
For more information about SteemitBoard, click here
If you no longer want to receive notifications, reply to this comment with the word
STOP
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I'm about a year late to this party, but I really appreciate your awesome guide!
Running Debian 9, myself, so for the record peeps, if you download Nodejs elsewhere, the rest of the instructions work like a charm.
Thanks again for taking the time to make this guide!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I really needed to see this article. But This testrpc thing is never working. I wish they had more support!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit