trufflesuite / truffle

:warning: The Truffle Suite is being sunset. For information on ongoing support, migration options and FAQs, visit the Consensys blog. Thank you for all the support over the years.
https://consensys.io/blog/consensys-announces-the-sunset-of-truffle-and-ganache-and-new-hardhat?utm_source=github&utm_medium=referral&utm_campaign=2023_Sep_truffle-sunset-2023_announcement_
MIT License
14.02k stars 2.31k forks source link

Improve vyper compiler installation for users #1750

Open honestbonsai opened 5 years ago

honestbonsai commented 5 years ago

Tests will break unless you have the vyper compiler installed. This isn't obvious from the README, should add it. Or if we could somehow handle this in a script that would be even better.

Docs here: https://vyper.readthedocs.io/en/latest/installing-vyper.html

honestbonsai commented 5 years ago

Possible script (for Mac)

python3.6 -m venv vyper-env
source vyper-env/bin/activate
pip install vyper

If a requirements.txt exists

python3.6 -m venv vyper-env
source vyper-env/bin/activate
pip install -r requirements.txt