-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I highly recommend install eth-brownie in a virtualenv, try doing this:
Then create a new virtual environment
Activate it (windows)
finally install eth-brownie using pip:
This adds more steps that's true, however gives you more control about which libraries you want depending on the project you are on. Note: do not forget to install ganache-cli (globally or for the env) using pip. I hope this info helps. |
Beta Was this translation helpful? Give feedback.
I highly recommend install eth-brownie in a virtualenv, try doing this:
pip3 install virtualenv
Then create a new virtual environment
virutalenv nameyouwant
Activate it (windows)
.\FolderName\Scripts\activate
finally install eth-brownie using pip:
pip install eth-brownie
This adds more steps that's true, however gives you more control about which libraries you want depending on the project you are on.
Note: do not forget to install ganache-cli (globally or for the env) using pip.
Note2: I also recommend a lot you try to do this on WSL2 (windows subsystem for linux)
I hope this info helps.