Skip to content

Demo

Code Blocks¶

There are a variety of ways to install Comet on your system. The easiest way is by using pip.

Python
1
pip install comet_ml
Python
1
pip install comet_ml
conda install -c anaconda -c conda-forge -c comet_ml comet_ml
%pip install comet_ml

There are a variety of ways to install Comet on your system. The easiest way is to use pip.

Python
pip install comet_ml
Python
pip install comet_ml
conda install -c anaconda -c conda-forge -c comet_ml comet_ml
%pip install comet_ml

There are a variety of ways to install Comet on your system. The easiest way is to use pip.

pip install comet_ml
pip install comet_ml
conda install -c anaconda -c conda-forge -c comet_ml comet_ml
%pip install comet_ml

Admonitions¶

Note

Check out our Integrations section for more details about using Comet's auto-logging capabilities with your preferred machine learning framework.

Warning

Check out our Integrations section for more details about using Comet's auto-logging capabilities with your preferred machine learning framework.

Error

Check out our Integrations section for more details about using Comet's auto-logging capabilities with your preferred machine learning framework.

Collapsable:

2. Can I create URL links to experiments from a Panel?

Yes, you can include any HTML, and URL links will work fine in a Panel. There is one thing to keep in mind: always provide a `target` for your href like this:

&a href="" target="_blank">TEXT&a> or &a href="" target="_top">TEXT&a>

You should use "_top" (replaces the current page) or "_blank" (opens a new tab) for the `target` attribute.

Note that Panels run in HTML iframes, and don't have access to your Comet account. For example, you aren't logged in in the iframe, and so your data is safe and secure.

Jun. 24, 2025