Closed pranav-singhal closed 5 years ago
I copied the files nucypher.py and test.py and tried running them by using pipenv run python3 test.py but I encounter this error: ImportError: cannot import name 'fragments' from 'umbral' This is how my pipfile looks like
pipenv run python3 test.py
ImportError: cannot import name 'fragments' from 'umbral'
[[source]] name = "pypi" url = "https://pypi.org/simple" verify_ssl = true [dev-packages] [packages] umbral = "*" [requires] python_version = "3.7"
This is the output of my pipenv graph:
pipenv graph
umbral==0.1.3a0 - bytestring-splitter [required: Any, installed: 1.0.0a4] - msgpack-python [required: ==0.5.6, installed: 0.5.6] - constant-sorrow [required: >=0.1.0a7, installed: 0.1.0a8] - bytestring-splitter [required: Any, installed: 1.0.0a4] - msgpack-python [required: ==0.5.6, installed: 0.5.6] - cryptography [required: >=2.3, installed: 2.5] - asn1crypto [required: >=0.21.0, installed: 0.24.0] - cffi [required: >=1.8,!=1.11.3, installed: 1.11.5] - pycparser [required: Any, installed: 2.19] - six [required: >=1.4.1, installed: 1.12.0] - pynacl [required: Any, installed: 1.3.0] - cffi [required: >=1.4.1, installed: 1.11.5] - pycparser [required: Any, installed: 2.19] - six [required: Any, installed: 1.12.0] - pysha3 [required: Any, installed: 1.0.2] - setuptools [required: Any, installed: 40.8.0]
This repo is no longer maintained. We now have a functional testnet that you should use instead: https://github.com/nucypher/nucypher
I copied the files nucypher.py and test.py and tried running them by using
pipenv run python3 test.py
but I encounter this error:ImportError: cannot import name 'fragments' from 'umbral'
This is how my pipfile looks likeThis is the output of my
pipenv graph
: