Issue while creating a Federation (interactive-api)⚙ #755
-
Hi there, I've been trying to simulate my own FL experiment but I am encountering an error while creating the federation. My Federation cell looks like this:
And I get this error while executing the cell:
My envoy and director configuration is almost the same as the one of the TinyImage tutorial. I also provide my repo's link (the notebooks placed in the workspace folder are irrelevant except the federation cell). I attach a screenshot of my anaconda terminals and how I launch them. I am pretty sure that the problem is related with how I launch the scripts or maybe something related with terminal (although I am using a conda virtual environment called TFG-FL with the OpenFL library). Any kind of help would be appreciated. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @daviddelriod - your configuration looks fine to me. Do you have any proxies set up on the system? If so, I would recommend setting |
Beta Was this translation helpful? Give feedback.
-
Issue solved! 🙌 The problem relied on the conda environment that I was using. I had the library working in visual studio but it was not installed in conda so I did |
Beta Was this translation helpful? Give feedback.
Issue solved! 🙌
The problem relied on the conda environment that I was using. I had the library working in visual studio but it was not installed in conda so I did
conda install git pip
and thenpip install git+https://github.com/securefederatedai/openfl
and the director started working (the envoys are struggling but for different errors😁).