Not Able To Install Cloudstorage
after installing cloudstorage module using pip when i am trying to import getting following error. import cloudstorage Traceback (most recent call last): File '', l
Solution 1:
Are you using python3? It seems that there is syntax error. Typing
is not available in python2.
Python2:
Python 2.7.13 (default, Jan 192017, 14:48:08)
[GCC 6.3.020170118] on linux2
Type "help", "copyright", "credits" or "license"formoreinformation.
>>> def get_driver(driver: str) ->str:
File "<stdin>", line 1
def get_driver(driver: str) ->str:
^
SyntaxError: invalid syntax
>>>
Python3:
Python 3.5.3 (default, Sep 14 2017, 22:58:41)
[GCC 6.3.0 20170406] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>defget_driver(driver: str) -> str:...
In python3 your syntax should work :)
Post a Comment for "Not Able To Install Cloudstorage"