hyperledger / indy-node

The server portion of a distributed ledger purpose-built for decentralized identity.
https://wiki.hyperledger.org/display/indy
Apache License 2.0
685 stars 657 forks source link

On installation of indy-node with the latest commit we are facing async not found issue #1842

Closed wiredhikari closed 8 months ago

wiredhikari commented 8 months ago

image

WadeBarnes commented 8 months ago

@wiredhikari, Are you installing indy-node for development purposes, or are you trying to setup an indy-node server? If for development, please use the VS Code or Gitpod dev containers. If for setting up an indy-node server, please install using the deb packages.

When installing the python packages directly, it's possible you're running into a dependency issue. Either missing or too new. You could have a look at the installation process used by the dev containers to try to troubleshoot.

It also appears you're using Python 3.9 when the code is based on Python 3.8.

wiredhikari commented 8 months ago

Hey @WadeBarnes , I tried exploring devcontainers then found out python 3.10.0 worked out better, so issue is resolved now. Thanks for help

WadeBarnes commented 8 months ago

@wiredhikari, Would you be able to share your experience using python 3.10?

wiredhikari commented 8 months ago

Sure, so after having installed rocksdb from source and doing some hacks around it: python 3.10.0 works well. The only issue i have faced so far is, nodes arent able to run on certain ports (for me 0.0.0.0:9701 and 0.0.0.0:9702) , but upon changing them, it is working well

WadeBarnes commented 8 months ago

Sure, so after having installed rocksdb from source and doing some hacks around it: python 3.10.0 works well. The only issue i have faced so far is, nodes arent able to run on certain ports (for me 0.0.0.0:9701 and 0.0.0.0:9702) , but upon changing them, it is working well

Anything you can contribute back to the project?