LoginSignup
0
0

More than 1 year has passed since last update.

Py-EVM(Ethereum Virtual MachineのPython実装)をインストールしてみた

Last updated at Posted at 2022-07-21

Python実装のEthereum Virtual Machineのソースコードを見たかったので、ソースからPy-EVMをインストールしてみました。

(0)環境

Windows 10, WSL2, Ubuntu 20.04

(1)ソースをダウンロードして適当なフォルダへ展開

ethereum / py-evm

(2)あとは惰性で。。。

sudo apt update
sudo apt upgrade
sudo apt install python3.9-dev
sudo apt install python3-pip
pip install virtualenv
virtualenv -p python3 venv
source venv/bin/activate
cd [ソース展開フォルダ]
pip install -e ".[dev]"

おしまい

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0