Replies: 1 comment 2 replies
-
Nice @n4n0b1t3 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Outdated: Please refer to this post here #971
Brownie installation issues and help requests regularly appear on this board. Here's a brief description of how I got it to work, to save others an hour of searching.
Disclaimer: I am not even sure if we need pipx, because I finally installed eth-brownie with simple
pip install eth-brownie
see below. I just got tired and it worked. If someone could please comment on how to reduce the complexity of this whole process, it would be much appreciated. The same is true for the Visual C++ build tools installation with a whopping ~5GB it needs. I am sure, we just need a tiny script from the whole thing. If someone figures that out, please comment as well!Anyway, here we go!
Setting the stage.

Download and partly install the Visual C++ build tools: https://visualstudio.microsoft.com/visual-cpp-build-tools/
Selecting only the module ticked off in the screenshot (German system) is sufficient, continue with the installation.
Normally I use a virtual environment for my Python projects, in this case, I would advise against it because what is written on their website:
pipx installs Brownie into a virtual environment and makes it available directly from the command line. Once installed, you will never have to activate a virtual environment prior to using Brownie.
continue ...
python -m pip install pipx
.python -m pipx ensurepath
.pip install Cython
pip install eth-brownie
brownie --version
Beta Was this translation helpful? Give feedback.
All reactions