Kernel: Python 3 (system-wide)
In [0]:
%%capture step_capture --no-display from IPython.display import display, HTML, Javascript display(HTML('<p class="bookend">START: Installing necessary software libraries...</p>')) #Installation ################################### !git clone https://github.com/rzellem/EXOTIC.git %pip install -U progressbar2 %pip install -U setuptools~=66.1 %pip install -U --use-deprecated=legacy-resolver git+https://github.com/alienlifeform/exotic-colab.git %pip install -U bokeh %pip install -U barycorrpy %pip install -U astroalign %pip install -U astropy %pip install -U astroquery %pip install -U dynesty;platform_system=='Windows' %pip install -U holoviews %pip install -U importlib-metadata %pip install -U imreg_dft %pip install -U LDTk %pip install -U lmfit %pip install -U matplotlib %pip install -U numpy %pip install -U pandas %pip install -U panel %pip install -U photutils %pip install -U pylightcurve %pip install -U python_dateutil %pip install -U python_version %pip install -U pyvo %pip install -U requests %pip install -U scipy %pip install -U scikit-image %pip install -U tenacity %pip install -U ultranest;platform_system!='Windows' %pip install -U ipywidgets %pip install -U ipython %pip install -U cython %pip install -U ultranest;python_version<='3.9' %pip install -U fileupload %pip install -U jupyterlab !jupyter nbextension enable --py widgetsnbextension !jupyter labextension install @jupyter-widgets/jupyterlab-manager !jupyter nbextension install --user --py fileupload !jupyter nbextension enable --user --py fileupload display(HTML('<p class="bookend">DONE: Installing necessary software libraries. <b>You may proceed to next step.</b></p>'))
In [0]: