You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorials/euclid_access/Euclid_ERO.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -624,7 +624,11 @@ We start by initializing the Firefly client.
624
624
The following line will open a new `Firefly` GUI in a separate tab **inside** the Jupyter Notebook environment. The user can drag the tab onto the currently open tab to create a "split tab". This the user to see the code and images side-by-side.
625
625
626
626
```python
627
-
fc = FireflyClient.make_lab_client()
627
+
# Uncomment when using within Jupyter Lab with jupyter_firefly_extensions installed
628
+
# fc = FireflyClient.make_lab_client()
629
+
630
+
# Uncomment for contexts other than the above
631
+
fc = FireflyClient.make_client(url="https://irsa.ipac.caltech.edu/irsaviewer")
628
632
```
629
633
630
634
In order to display in image or catalog in `Firefly`, it needs to be uploaded to the `Firefly` server. We do this here using the `upload_file()` function.
0 commit comments