A client is installing DSWS to use in Jupyter. He already has wincertstore installed but is getting

A client is installing DSWS to use in Jupyter with Python. He already has wincertstore installed but is getting the error message: AttributeError: module 'wincertstore' has no attribute 'CertFile'. Please can you advise?

Best Answer

  • @Alison Quick1

    Thank you for reaching out to us.

    You can try the following code:

    import wincertstore
    print(wincertstore.__file__)
    wincertstore.CertFile()

    Then, run the pip list on the command prompt to check the version of DatastreamPy and wincertstore.

    C:\Users\>pip list
    Package                       Version
    ----------------------------- ----------
    absl-py                       1.4.0
    altair                        4.1.0
    anyio                         3.3.4
    ...
    DatastreamPy                  1.0.12
    ...
    wincertstore                  0.2
    ...

    Moever, please check the version of Python that the client is using.

Answers