abtractumx
abtractumx

Reputation: 11

Brownie Import Error: _PyGen_Send [Ubuntu Jelly 22.04]

I just updated my ubuntu os and after had installed the following:

$ python3 -m pip install --user pipx
$ python3 -m pipx ensurepath
$ pipx install eth-brownie

when i launch the brownie console i get the following message:

Traceback (most recent call last):

ImportError: /home/user/.local/pipx/venvs/eth-brownie/lib/python3.10/site-packages/cytoolz/functoolz.cpython-310-x86_64-linux-gnu.so: undefined symbol: _PyGen_Send

Distributor ID: Ubuntu
Description:    Ubuntu 22.04 LTS
Release:    22.04
Codename:   jammy

Can someone help me with this? Thanks

Upvotes: 0

Views: 569

Answers (1)

Shawn Dietzer
Shawn Dietzer

Reputation: 1

I ended up installing python 3.8 and then ran:

pipx install --python python3.8 eth-brownie

If you get errors then you may have to run these commands before you install brownie:

sudo apt install python3.8-distutils
sudo apt-get install python3.8-dev

Upvotes: 0

Related Questions