I have a fresh install of Eikon desktop on windows, which is running, have eikon module installed in python, and am trying to use the api from python (also fresh downloaded latest version 1.1.10). It fails with
Check if Eikon Desktop or Eikon API Proxy is running.
Traceback (most recent call last):
File "....py", line 27, in <module>
ek.set_app_key('.....')
File "...\AppData\Local\mambaforge\lib\site-packages\eikon\Profile.py", line 33, in set_app_key
get_profile().set_app_key(app_key)
File "...\AppData\Local\mambaforge\lib\site-packages\eikon\Profile.py", line 231, in set_app_key
self.check_profile()
File "...\AppData\Local\mambaforge\lib\site-packages\eikon\Profile.py", line 354, in check_profile
raise EikonError(-1, 'Port number was not identified. Check if Eikon Desktop or Eikon API Proxy is running.')
eikon.eikonError.EikonError: Error code -1 | Port number was not identified. Check if Eikon Desktop or Eikon API Proxy is running.
From what I can see in netstat, there's nothing listening on port 9000 or anywhere near that (closest is listening on 9182).
Is there any setting perhaps I need to configure to enable api access?