Latest Eikon API dependencies

Hi all! I am trying to install Eikon via conda, however every time I reach an impasse because I get backtracking issues. I am trying to find the latest module dependencies for all the modules and copied the ones in the Quick Start guide:

"Successfully installed appdirs-1.4.3 certifi-2018.1.18 chardet-3.0.4 datetime-4.2 eikon-0.1.11 idna-2.6 numpy-1.14.0 pandas-0.22.0 ython-dateutil-2.6.1 pytz-2017.3 requests-2.18.4 six-1.11.0 urllib3-1.22 websocket-client-0.46.0 zope.interface-4.4.3"

However, this was 2019 and an earlier version of eikon where these don't work anymore. Can someone give me a comprehensive list of the module versions I need? Either greater than x or the specific one?

Best Answer

  • Jirapongse
    Answer ✓

    @natasha.jeans

    I checked the setup.py file in the eikon 1.1.14.

    It listed the following dependencies.

        install_requires=[
            "httpx>=0.18.0",
            "nest_asyncio>=1.5.1",
            "datetime",
            "pandas>=1.0.0",
            "numpy>=1.11.0",
            "appdirs>=1.4.3",
            "python-dateutil",
            "websocket-client>=0.54.0,!=1.0.0",
            "deprecation",
            # requests-async requirements
            "certifi",
            "chardet==3.*",
            "h2==3.*",
            "idna==2.*",
            "rfc3986==1.*",
            "requests==2.*",
        ],

Answers