Skip to content

Instantly share code, notes, and snippets.

@tpmccallum
Created March 2, 2018 23:36
Show Gist options
  • Save tpmccallum/95c2daf2445564ab3489470e6942d70d to your computer and use it in GitHub Desktop.
Save tpmccallum/95c2daf2445564ab3489470e6942d70d to your computer and use it in GitHub Desktop.
An installation procedure for Vyper using Ubuntu 16.04 LTS

Installing Vyper on Ubuntu 16.04LTS


sudo apt-get update
sudo apt-get -y upgrade
sudo apt-get install build-essential libssl-dev libffi-dev
wget https://www.python.org/ftp/python/3.6.2/Python-3.6.2.tgz
tar xfz Python-3.6.2.tgz
cd Python-3.6.2/
./configure --prefix /usr/local/lib/python3.6
sudo -H make
sudo -H make install

cd Python-3.6.2/
virtualenv -p /usr/local/lib/python3.6/bin/python3.6 --no-site-packages ~/vyper-venv-3-6-2
source ~/vyper-venv-3-6-2/bin/activate

cd ~/vyper-venv-3-6-2/
git clone https://github.com/ethereum/vyper.git
cd vyper
make
make test
vyper examples/crowdfund.v.py

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment