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
When installing minio on python 3.6 (Anaconda), I get the following error message when using the lib:
Traceback (most recent call last):
File "MinIOTest.py", line 1, in <module>
import minio
File "/opt/cloudera/parcels/Anaconda/envs/python36/lib/python3.6/site-packages/minio/__init__.py", line 41, in <module>
from .api import Minio as Minio
File "/opt/cloudera/parcels/Anaconda/envs/python36/lib/python3.6/site-packages/minio/api.py", line 28
from __future__ import absolute_import, annotations
^
SyntaxError: future feature annotations is not defined
I see, then coud you please specify the required python version even for older pips? So when a user runs pip install minio the correct version (v 7.1.8) is installed? Thank you.
When installing minio on python 3.6 (Anaconda), I get the following error message when using the lib:
From quick googling it seems that future feature
annotations
is avaiable from python >= 3.7:https://stackoverflow.com/questions/70515194/syntaxerror-future-feature-annotations-is-not-defined
minio 7.2.7
The text was updated successfully, but these errors were encountered: