Travis Hathaway
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee
  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       owned this note    owned this note      
    Published Linked with GitHub
    Subscribed
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Subscribe
    --- tags: conda, work --- # Introducing Channel Notices for conda Today, I am here to talk to you about one of the latest feature additions to `conda`, which is the "Channel Notices" feature. We will cover exactly what this new feature is and how it works from the perspective of regular `conda` users as well as channel owners. ## What are channel notices? Simply put, channel notices provide a way for channel owners to communicate important information to their respective users. A channel owner is a group or individual that maintains a channel. Some of the biggest channels include "defaults" which is managed by Anaconda and several of the community managed channels, including "conda-forge" and "bioconda". Additionally, if you manage a personal channel via "anaconda.org" then you too can be considered a channel owner. The notices themselves may include information about service disruptions or announcements about particular packages. These notices may also include notices about violations of terms of service for particular channels. On top of that, channel owners who need support from their users or want to publicize any initiatives can use channel notices for this purpose as well. Channel notices will appear for users in one of two ways: - During normal usage of the `install`, `update` or `create` sub-commands - By invoking `conda notices` directly. Below are examples of each: ### Example one: running `conda install, update or create` ```bash conda install python=3.10 Collecting package metadata (current_repodata.json): done Solving environment: # Truncating usual install output... Channel "repo.anaconda.com/pkgs/main/noarch" has the following notices: [critical] -- Sun July 17th 11:00:00 2022 Here is an example message that will be displayed to users ``` If there are channel notices that you have not seen, they will be **displayed here only once**. After a message has been displayed, it will no longer appear when running `install`, `create` or `update`. To display all notices on command, check out the next example. ### Example two: running `conda notices` ```bash conda notices Retrieving notices: done Channel "repo.anaconda.com/pkgs/main/noarch" has the following notices: [critical] -- Sun July 17th 11:00:00 2022 Here is an example message that will be displayed to users ``` Here, we directly invoke the `conda notices` command and will receive all messages for all channels that we have configured. ### Disabling channel notices If you do not want to see channel notices during regular usage of `conda`, you can put the following line into your `.condarc` file: ```yaml number_channel_notices: 0 ``` The setting above specifies exactly how many messages will be shown when notices appear while running the `install`, `update` or `create` sub-commands. Setting it to `0` disables channel notices completely. Even when these notices are disabled in the `.condarc` file, all channel notices that are currently available will still appear when the `conda notices` command is invoked. ## How do I create channel notices? As a channel owner, you will put all of your channel notices into a single `notices.json` file in the root of your channel directory. This file lives beside other files such as `channeldata.json`. An example of this layout is shown below: ``` # Root of channel repo - channeldata.json - index.html - noarch/ - notices.json <-- new file where notices live - osx64/ - ... ``` The `notices.json` file is laid out like the example below: ```json { "notices": [ { "id": "1cd1d8e5-d96c-42d1-9c29-38120ad80823", "message": "This is a very important message about channel stability", "level": "critical", "created_at": "2022-04-26T11:50:34+00:00", "expired_at": "2022-06-30T11:50:34+00:00" }, { "id": "1cd1d8e5-d96c-42d1-9c29-28120ad80823", "message": "Here is a warning about something with the channel", "level": "warning", "created_at": "2022-05-02T11:50:34+00:00", "expired_at": "2022-06-30T11:50:34+00:00" }, { "id": "1cd1d8e5-d96c-42d1-9c29-28120ad80823", "message": "Here is a helpful announcement about the channel itself", "level": "info", "created_at": "2022-05-02T11:50:34+00:00", "expired_at": "2022-06-30T11:50:34+00:00" } ] } ``` Here's a summary of the fields for each notice: **id** This is a unique identifier for the message, it can be any string you want but we suggest using a UUID. **message** This is the message itself. We recommend keeping it as short as possible; the size of a single Tweet, or ~280 characters, is ideal. You can use shortened links when linking to a longer announcment. **level** The level conveys the importance of the message and can be one of "critical", "warning" and "info". There are no hard rules for the types of messages which belong in these catagories. Please use your best judgment. **created_at** A datetime field that shows when the message was created. Use the ISO 8601 format. **expired_at** A datetime field that shows when the message will expire. Use the ISO 8601 format. Additionally, this field will dictate when the `conda` client will fetch a new message. If you know you will be adding a new notice every week, set the `expired_at` field to when you would like to client to check for new notices. ## Final thoughts and future development As development on `conda` continues, "channel notices" may evolve into a more general "notices" feature for all messages `conda` wants to communicate to its users (e.g. update notices or experimental feature usage notices). We believe doing so will give the tool better UX and centralize all notices to a single location for our users. We highly appreciate any bug reports related to this new feature. Please file one [at our GitHub repository](https://github.com/conda/conda/issues/new?assignees=&labels=type%3A%3Abug&template=bug-report.yml).

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully