You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the keyword argument python_requires of setup() is not set, and thus it is assumed that this distribution is compatible with all Python versions.
However, I found it is not compatible with Python <3.6. My local Python version is 2.7, and I encounter the following error when executing “pip install bitshares”_
Collecting bitshares
…
ERROR: Could not find a version that satisfies the requirement websockets<9,>=8.1 (from graphenelib<2.0.0,>=1.4.0->bitshares) (from versions: 1.0, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, 3.4, 4.0.1, 5.0, 5.0.1)
ERROR: No matching distribution found for websockets<9,>=8.1 (from graphenelib<2.0.0,>=1.4.0->bitshares)
Dependencies of this distribution are listed as follows:
graphenelib>=1.4.0,<2.0.0
Events==0.3
I found that graphenelib>=1.4.0,<2.0.0 requires websockets (<9,>=8.1).
And websockets (<9,>=8.1) requires Python>=3.6.1, which results in installation failure of bitshares in Python 2.7.
Way to fix:
modify setup() in setup.py, add python_requires keyword argument:
setup(…
python_requires=">=3.6.1",
…)
Thanks for your attention.
Best regrads,
PyVCEchecker
The text was updated successfully, but these errors were encountered:
Currently, the keyword argument python_requires of setup() is not set, and thus it is assumed that this distribution is compatible with all Python versions.
However, I found it is not compatible with Python <3.6. My local Python version is 2.7, and I encounter the following error when executing “pip install bitshares”_
Dependencies of this distribution are listed as follows:
I found that graphenelib>=1.4.0,<2.0.0 requires websockets (<9,>=8.1).
And websockets (<9,>=8.1) requires Python>=3.6.1, which results in installation failure of bitshares in Python 2.7.
Way to fix:
modify setup() in setup.py, add python_requires keyword argument:
Thanks for your attention.
Best regrads,
PyVCEchecker
The text was updated successfully, but these errors were encountered: