【Python小技巧】一行conda命令升级Anaconda中python到指定版本

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档

文章目录

  • 前言
  • 一、升级Python版本
  • 1. 查看可用python版本
  • 2 .显示目前的版本号:
  • 3. 升级python到指定版本
  • 4. 确认升级到新版本
  • 二、升级记录
  • 总结
  • 前方高能

  • 前言

    听说python出了新版本,想升级却不知道怎么升级,升哪个版本?
    python 3.10用着还不错,现在python都出了3.13版本了,而且3.11较之前的版本效率提升不是一点点!但鉴于第三方库的兼容问题,考虑再三,就先升级到3.11版本吧。


    一、升级Python版本

    1. 查看可用python版本

    conda search python
    

    以下为部分python版本,由于太多,只截取部分。鉴于后续版本兼容性不清楚,暂时只升级到3.11.10,也就是3.11的最大版本。

    python                       3.10.14      he1021f5_0  pkgs/main
    python                       3.10.14      he1021f5_1  pkgs/main
    python                       3.10.15      h4607a30_1  pkgs/main
    python                        3.11.0      h966fe2a_2  pkgs/main
    python                        3.11.0      h966fe2a_3  pkgs/main
    python                        3.11.2      h966fe2a_0  pkgs/main
    python                        3.11.3      h966fe2a_0  pkgs/main
    python                        3.11.3      he1021f5_1  pkgs/main
    python                        3.11.4      h966fe2a_0  pkgs/main
    python                        3.11.4      he1021f5_0  pkgs/main
    python                        3.11.5      h966fe2a_0  pkgs/main
    python                        3.11.5      he1021f5_0  pkgs/main
    python                        3.11.7      he1021f5_0  pkgs/main
    python                        3.11.8      he1021f5_0  pkgs/main
    python                        3.11.9      he1021f5_0  pkgs/main
    python                       3.11.10      h4607a30_0  pkgs/main
    python                        3.12.0      h1d929f7_0  pkgs/main
    python                        3.12.1      h1d929f7_0  pkgs/main
    python                        3.12.2      h1d929f7_0  pkgs/main
    python                        3.12.3      h1d929f7_0  pkgs/main
    python                        3.12.3      h1d929f7_1  pkgs/main
    python                        3.12.4      h14ffc60_1  pkgs/main
    python                        3.12.5      h14ffc60_1  pkgs/main
    python                        3.12.6      h14ffc60_1  pkgs/main
    python                        3.12.7      h14ffc60_0  pkgs/main
    python                        3.13.0 hadb2040_100_cp313  pkgs/main
    

    2 .显示目前的版本号:

    (base) C:\Users\Administrator>python
    Python 3.10.14 | packaged by Anaconda, Inc. | (main, Mar 21 2024, 16:20:14) [MSC v.1916 64 bit (AMD64)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> exit()
    

    3. 升级python到指定版本

    conda install python=3.11.10
    

    这里就一个等号就行

    4. 确认升级到新版本

    (base) C:\Users\Administrator>python
    Python 3.11.10 | packaged by Anaconda, Inc. | (main, Oct  3 2024, 07:22:26) [MSC v.1929 64 bit (AMD64)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> exit()
    
    (base) C:\Users\Administrator>
    

    二、升级记录

    升级记录mark一下,以后如果发现哪个库不兼容了,还可以考虑恢复相关版本。

    (base) C:\Users\Administrator>conda search python
    Loading channels: done
    # Name                       Version           Build  Channel
    python                         2.6.8               5  anaconda/pkgs/free
    python                         2.6.8               6  anaconda/pkgs/free
    python                         2.6.9               0  anaconda/pkgs/free
    python                         2.6.9               1  anaconda/pkgs/free
    python                         2.7.3               2  anaconda/pkgs/free
    python                         2.7.3               3  anaconda/pkgs/free
    python                         2.7.3               4  anaconda/pkgs/free
    python                         2.7.3               5  anaconda/pkgs/free
    python                         2.7.3               6  anaconda/pkgs/free
    python                         2.7.3               7  anaconda/pkgs/free
    python                         2.7.4               0  anaconda/pkgs/free
    python                         2.7.5               0  anaconda/pkgs/free
    python                         2.7.5               1  anaconda/pkgs/free
    python                         2.7.5               2  anaconda/pkgs/free
    python                         2.7.6               0  anaconda/pkgs/free
    python                         2.7.6               2  anaconda/pkgs/free
    python                         2.7.7               0  anaconda/pkgs/free
    python                         2.7.7               1  anaconda/pkgs/free
    python                         2.7.7               2  anaconda/pkgs/free
    python                         2.7.8               0  anaconda/pkgs/free
    python                         2.7.9               0  anaconda/pkgs/free
    python                         2.7.9               1  anaconda/pkgs/free
    python                        2.7.10               0  anaconda/pkgs/free
    python                        2.7.10               1  anaconda/pkgs/free
    python                        2.7.10               3  anaconda/pkgs/free
    python                        2.7.10               4  anaconda/pkgs/free
    python                        2.7.10               5  anaconda/pkgs/free
    python                        2.7.11               0  anaconda/pkgs/free
    python                        2.7.11               1  anaconda/pkgs/free
    python                        2.7.11               2  anaconda/pkgs/free
    python                        2.7.11               4  anaconda/pkgs/free
    python                        2.7.11               5  anaconda/pkgs/free
    python                        2.7.12               0  anaconda/pkgs/free
    python                        2.7.13               0  anaconda/pkgs/free
    python                        2.7.13               1  anaconda/pkgs/free
    python                        2.7.13     h1b6d89f_16  pkgs/main
    python                        2.7.13     h9912b81_15  pkgs/main
    python                        2.7.13     hb034564_12  pkgs/main
    python                        2.7.14     h2765ee6_18  pkgs/main
    python                        2.7.14     h3e68818_15  pkgs/main
    python                        2.7.14     h4084c39_22  pkgs/main
    python                        2.7.14     h4a10d90_30  pkgs/main
    python                        2.7.14     h4a10d90_31  pkgs/main
    python                        2.7.14     h59f5a59_20  pkgs/main
    python                        2.7.14     h819644d_16  pkgs/main
    python                        2.7.14     h8c3f1cb_23  pkgs/main
    python                        2.7.15      h2880e7c_2  pkgs/main
    python                        2.7.15      h2880e7c_3  pkgs/main
    python                        2.7.15      h2880e7c_4  pkgs/main
    python                        2.7.15     hcb6e200_15  pkgs/main
    python                        2.7.15      hcb6e200_5  pkgs/main
    python                        2.7.15      hcb6e200_7  pkgs/main
    python                        2.7.15      he216670_0  pkgs/main
    python                        2.7.16      hcb6e200_0  pkgs/main
    python                        2.7.17      h930f6bb_0  pkgs/main
    python                        2.7.18      hcb6e200_0  pkgs/main
    python                        2.7.18      hfb89ab9_0  pkgs/main
    python                         3.3.0               4  anaconda/pkgs/free
    python                         3.3.1               0  anaconda/pkgs/free
    python                         3.3.2               0  anaconda/pkgs/free
    python                         3.3.3               0  anaconda/pkgs/free
    python                         3.3.4               0  anaconda/pkgs/free
    python                         3.3.5               0  anaconda/pkgs/free
    python                         3.3.5               1  anaconda/pkgs/free
    python                         3.3.5               2  anaconda/pkgs/free
    python                         3.4.0               0  anaconda/pkgs/free
    python                         3.4.1               0  anaconda/pkgs/free
    python                         3.4.1               1  anaconda/pkgs/free
    python                         3.4.1               2  anaconda/pkgs/free
    python                         3.4.2               0  anaconda/pkgs/free
    python                         3.4.2               1  anaconda/pkgs/free
    python                         3.4.3               0  anaconda/pkgs/free
    python                         3.4.3               3  anaconda/pkgs/free
    python                         3.4.3               4  anaconda/pkgs/free
    python                         3.4.3               5  anaconda/pkgs/free
    python                         3.4.4               0  anaconda/pkgs/free
    python                         3.4.4               1  anaconda/pkgs/free
    python                         3.4.4               2  anaconda/pkgs/free
    python                         3.4.4               4  anaconda/pkgs/free
    python                         3.4.4               5  anaconda/pkgs/free
    python                         3.4.5               0  anaconda/pkgs/free
    python                         3.5.0               0  anaconda/pkgs/free
    python                         3.5.0               1  anaconda/pkgs/free
    python                         3.5.0               2  anaconda/pkgs/free
    python                         3.5.0               3  anaconda/pkgs/free
    python                         3.5.0               4  anaconda/pkgs/free
    python                         3.5.1               0  anaconda/pkgs/free
    python                         3.5.1               1  anaconda/pkgs/free
    python                         3.5.1               2  anaconda/pkgs/free
    python                         3.5.1               4  anaconda/pkgs/free
    python                         3.5.1               5  anaconda/pkgs/free
    python                         3.5.2               0  anaconda/pkgs/free
    python                         3.5.3               0  anaconda/pkgs/free
    python                         3.5.3               2  anaconda/pkgs/free
    python                         3.5.3               3  anaconda/pkgs/free
    python                         3.5.4               0  anaconda/pkgs/free
    python                         3.5.4     h1357f44_23  pkgs/main
    python                         3.5.4     hc495aa9_21  pkgs/main
    python                         3.5.4     hd3c4935_11  pkgs/main
    python                         3.5.4     hdec4e59_20  pkgs/main
    python                         3.5.4     hedc2606_15  pkgs/main
    python                         3.5.5      h0c2934d_0  pkgs/main
    python                         3.5.5      h0c2934d_1  pkgs/main
    python                         3.5.5      h0c2934d_2  pkgs/main
    python                         3.5.6      he025d50_0  pkgs/main
    python                         3.6.0               0  anaconda/pkgs/free
    python                         3.6.1               0  anaconda/pkgs/free
    python                         3.6.1               2  anaconda/pkgs/free
    python                         3.6.2               0  anaconda/pkgs/free
    python                         3.6.2     h09676a0_15  pkgs/main
    python                         3.6.2     h6679aeb_11  pkgs/main
    python                         3.6.3      h210ce5f_2  pkgs/main
    python                         3.6.3      h3389d20_0  pkgs/main
    python                         3.6.3      h3b118a2_4  pkgs/main
    python                         3.6.3      h9e2ca53_1  pkgs/main
    python                         3.6.4      h0c2934d_2  pkgs/main
    python                         3.6.4      h0c2934d_3  pkgs/main
    python                         3.6.4      h6538335_0  pkgs/main
    python                         3.6.4      h6538335_1  pkgs/main
    python                         3.6.5      h0c2934d_0  pkgs/main
    python                         3.6.6      hea74fb7_0  pkgs/main
    python                         3.6.7      h33f27b4_0  pkgs/main
    python                         3.6.7      h33f27b4_1  pkgs/main
    python                         3.6.7      h9f7ef89_2  pkgs/main
    python                         3.6.8      h9f7ef89_0  pkgs/main
    python                         3.6.8      h9f7ef89_1  pkgs/main
    python                         3.6.8      h9f7ef89_7  pkgs/main
    python                         3.6.9      h5500b2f_0  pkgs/main
    python                        3.6.10      h9f7ef89_0  pkgs/main
    python                        3.6.10      h9f7ef89_1  pkgs/main
    python                        3.6.10      h9f7ef89_2  pkgs/main
    python                        3.6.12      h5500b2f_2  pkgs/main
    python                        3.6.13      h3758d61_0  pkgs/main
    python                         3.7.0      hea74fb7_0  pkgs/main
    python                         3.7.1      h33f27b4_3  pkgs/main
    python                         3.7.1      h33f27b4_4  pkgs/main
    python                         3.7.1      h8c8aaf0_6  pkgs/main
    python                         3.7.1      he44a216_5  pkgs/main
    python                         3.7.2      h8c8aaf0_0  pkgs/main
    python                         3.7.2     h8c8aaf0_10  pkgs/main
    python                         3.7.2      h8c8aaf0_2  pkgs/main
    python                         3.7.3      h8c8aaf0_0  pkgs/main
    python                         3.7.3      h8c8aaf0_1  pkgs/main
    python                         3.7.4      h5263a28_0  pkgs/main
    python                         3.7.5      h8c8aaf0_0  pkgs/main
    python                         3.7.6      h60c2a47_2  pkgs/main
    python                         3.7.7 h60c2a47_0_cpython  pkgs/main
    python                         3.7.7      h60c2a47_2  pkgs/main
    python                         3.7.7      h81c818b_4  pkgs/main
    python                         3.7.9      h60c2a47_0  pkgs/main
    python                        3.7.10      h6244533_0  pkgs/main
    python                        3.7.11      h6244533_0  pkgs/main
    python                        3.7.13      h6244533_0  pkgs/main
    python                        3.7.13      h6244533_1  pkgs/main
    python                        3.7.15      h6244533_0  pkgs/main
    python                        3.7.15      h6244533_1  pkgs/main
    python                        3.7.16      h6244533_0  pkgs/main
    python                         3.8.0      hff0d562_0  pkgs/main
    python                         3.8.0      hff0d562_1  pkgs/main
    python                         3.8.0      hff0d562_2  pkgs/main
    python                         3.8.1      h5fd99cc_1  pkgs/main
    python                         3.8.1 h5fd99cc_8_cpython  pkgs/main
    python                         3.8.1 he1778fa_7_cpython  pkgs/main
    python                         3.8.2      h5fd99cc_0  pkgs/main
    python                         3.8.2     h5fd99cc_11  pkgs/main
    python                         3.8.2     he1778fa_13  pkgs/main
    python                         3.8.3      he1778fa_0  pkgs/main
    python                         3.8.3      he1778fa_2  pkgs/main
    python                         3.8.5      h5fd99cc_1  pkgs/main
    python                         3.8.5      he1778fa_0  pkgs/main
    python                         3.8.8      hdbf39b2_4  pkgs/main
    python                         3.8.8      hdbf39b2_5  pkgs/main
    python                        3.8.10      hdbf39b2_7  pkgs/main
    python                        3.8.11      h6244533_1  pkgs/main
    python                        3.8.12      h6244533_0  pkgs/main
    python                        3.8.13      h6244533_0  pkgs/main
    python                        3.8.13      h6244533_1  pkgs/main
    python                        3.8.15      h6244533_1  pkgs/main
    python                        3.8.15      h6244533_2  pkgs/main
    python                        3.8.15      h82bb817_0  pkgs/main
    python                        3.8.16      h1aa4202_4  pkgs/main
    python                        3.8.16      h6244533_2  pkgs/main
    python                        3.8.16      h6244533_3  pkgs/main
    python                        3.8.17      h1aa4202_0  pkgs/main
    python                        3.8.17      h6244533_0  pkgs/main
    python                        3.8.18      h1aa4202_0  pkgs/main
    python                        3.8.18      h6244533_0  pkgs/main
    python                        3.8.19      h1aa4202_0  pkgs/main
    python                        3.8.20      h8205438_0  pkgs/main
    python                         3.9.0      h6244533_2  pkgs/main
    python                         3.9.0      h8aef87e_1  pkgs/main
    python                         3.9.1      h6244533_2  pkgs/main
    python                         3.9.2      h6244533_0  pkgs/main
    python                         3.9.4      h6244533_0  pkgs/main
    python                         3.9.5      h6244533_3  pkgs/main
    python                         3.9.6      h6244533_0  pkgs/main
    python                         3.9.6      h6244533_1  pkgs/main
    python                         3.9.7      h6244533_1  pkgs/main
    python                        3.9.11      h6244533_1  pkgs/main
    python                        3.9.11      h6244533_2  pkgs/main
    python                        3.9.12      h6244533_0  pkgs/main
    python                        3.9.13      h6244533_1  pkgs/main
    python                        3.9.13      h6244533_2  pkgs/main
    python                        3.9.15      h6244533_0  pkgs/main
    python                        3.9.15      h6244533_1  pkgs/main
    python                        3.9.15      h6244533_2  pkgs/main
    python                        3.9.16      h1aa4202_3  pkgs/main
    python                        3.9.16      h6244533_0  pkgs/main
    python                        3.9.16      h6244533_1  pkgs/main
    python                        3.9.16      h6244533_2  pkgs/main
    python                        3.9.17      h1aa4202_0  pkgs/main
    python                        3.9.17      h6244533_0  pkgs/main
    python                        3.9.18      h1aa4202_0  pkgs/main
    python                        3.9.18      h6244533_0  pkgs/main
    python                        3.9.19      h1aa4202_0  pkgs/main
    python                        3.9.19      h1aa4202_1  pkgs/main
    python                        3.9.20      h8205438_1  pkgs/main
    python                        3.10.0      h96c0403_3  pkgs/main
    python                        3.10.0      hbb2ffb3_0  pkgs/main
    python                        3.10.0      hbb2ffb3_1  pkgs/main
    python                        3.10.0      hbb2ffb3_2  pkgs/main
    python                        3.10.3      hbb2ffb3_5  pkgs/main
    python                        3.10.4      hbb2ffb3_0  pkgs/main
    python                        3.10.6      hbb2ffb3_0  pkgs/main
    python                        3.10.6      hbb2ffb3_1  pkgs/main
    python                        3.10.8      h966fe2a_1  pkgs/main
    python                        3.10.8      hbb2ffb3_0  pkgs/main
    python                        3.10.9      h966fe2a_0  pkgs/main
    python                        3.10.9      h966fe2a_1  pkgs/main
    python                        3.10.9      h966fe2a_2  pkgs/main
    python                       3.10.10      h966fe2a_2  pkgs/main
    python                       3.10.11      h966fe2a_2  pkgs/main
    python                       3.10.11      he1021f5_3  pkgs/main
    python                       3.10.12      h966fe2a_0  pkgs/main
    python                       3.10.12      he1021f5_0  pkgs/main
    python                       3.10.13      h966fe2a_0  pkgs/main
    python                       3.10.13      he1021f5_0  pkgs/main
    python                       3.10.14      he1021f5_0  pkgs/main
    python                       3.10.14      he1021f5_1  pkgs/main
    python                       3.10.15      h4607a30_1  pkgs/main
    python                        3.11.0      h966fe2a_2  pkgs/main
    python                        3.11.0      h966fe2a_3  pkgs/main
    python                        3.11.2      h966fe2a_0  pkgs/main
    python                        3.11.3      h966fe2a_0  pkgs/main
    python                        3.11.3      he1021f5_1  pkgs/main
    python                        3.11.4      h966fe2a_0  pkgs/main
    python                        3.11.4      he1021f5_0  pkgs/main
    python                        3.11.5      h966fe2a_0  pkgs/main
    python                        3.11.5      he1021f5_0  pkgs/main
    python                        3.11.7      he1021f5_0  pkgs/main
    python                        3.11.8      he1021f5_0  pkgs/main
    python                        3.11.9      he1021f5_0  pkgs/main
    python                       3.11.10      h4607a30_0  pkgs/main
    python                        3.12.0      h1d929f7_0  pkgs/main
    python                        3.12.1      h1d929f7_0  pkgs/main
    python                        3.12.2      h1d929f7_0  pkgs/main
    python                        3.12.3      h1d929f7_0  pkgs/main
    python                        3.12.3      h1d929f7_1  pkgs/main
    python                        3.12.4      h14ffc60_1  pkgs/main
    python                        3.12.5      h14ffc60_1  pkgs/main
    python                        3.12.6      h14ffc60_1  pkgs/main
    python                        3.12.7      h14ffc60_0  pkgs/main
    python                        3.13.0 hadb2040_100_cp313  pkgs/main
    
    (base) C:\Users\Administrator>python
    Python 3.10.14 | packaged by Anaconda, Inc. | (main, Mar 21 2024, 16:20:14) [MSC v.1916 64 bit (AMD64)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> exit()
    
    (base) C:\Users\Administrator>conda list python
    # packages in environment at d:\ProgramData\anaconda3:
    #
    # Name                    Version                   Build  Channel
    aliyun-python-sdk-core    2.15.1                   pypi_0    pypi
    aliyun-python-sdk-kms     2.16.3                   pypi_0    pypi
    brotli-python             1.0.9           py310hd77b12b_8    defaults
    dnspython                 2.3.0                    pypi_0    pypi
    gitpython                 3.1.31                   pypi_0    pypi
    google-api-python-client  2.86.0                   pypi_0    pypi
    ipython                   8.20.0          py310haa95532_0    defaults
    ipython_genutils          0.2.0              pyhd3eb1b0_1    defaults
    msgpack-python            1.0.3           py310h59b6b97_0    defaults
    mysql-connector-python    8.1.0                    pypi_0    pypi
    openapi-python-client     0.13.4                   pypi_0    pypi
    opencv-contrib-python     4.9.0.80                 pypi_0    pypi
    opencv-python             4.9.0.80                 pypi_0    pypi
    opencv-python-headless    3.4.18.65                pypi_0    pypi
    python                    3.10.14              he1021f5_0    defaults
    python-bidi               0.4.2                    pypi_0    pypi
    python-dateutil           2.9.0post0      py310haa95532_2    defaults
    python-docx               1.1.2                    pypi_0    pypi
    python-dotenv             1.0.0                    pypi_0    pypi
    python-engineio           4.8.2                    pypi_0    pypi
    python-fastjsonschema     2.16.2          py310haa95532_0    defaults
    python-graphviz           0.20.1          py310haa95532_0    defaults
    python-libarchive-c       2.9                pyhd3eb1b0_1    defaults
    python-lmdb               1.4.1           py310hd77b12b_0    defaults
    python-lsp-black          1.2.1           py310haa95532_0    defaults
    python-lsp-jsonrpc        1.1.2              pyhd3eb1b0_0    defaults
    python-lsp-server         1.7.1           py310haa95532_0    defaults
    python-multipart          0.0.6                    pypi_0    pypi
    python-slugify            5.0.2              pyhd3eb1b0_0    defaults
    python-snappy             0.6.1           py310hd77b12b_0    defaults
    python-socketio           5.11.0                   pypi_0    pypi
    python-tzdata             2023.3             pyhd3eb1b0_0    defaults
    python-vlc                3.0.20123                pypi_0    pypi
    pythonnet                 3.0.1                    pypi_0    pypi
    
    (base) C:\Users\Administrator>
    (base) C:\Users\Administrator>conda install python=3.11.10
    Retrieving notices: ...working... done
    Collecting package metadata (current_repodata.json): done
    Solving environment: |
    The environment is inconsistent, please check the package plan carefully
    The following packages are causing the inconsistency:
    
      - defaults/win-64::anaconda-navigator==2.5.0=py310haa95532_0
      - defaults/win-64::anaconda-project==0.11.1=py310haa95532_0
      - defaults/win-64::astropy==5.1=py310h9128911_0
      - defaults/win-64::bokeh==2.4.3=py310haa95532_0
      - defaults/win-64::bottleneck==1.3.7=py310h9128911_0
      - defaults/win-64::cairo==1.16.0=haedb8bc_4
      - defaults/win-64::conda==24.4.0=py310haa95532_0
      - defaults/win-64::conda-build==24.3.0=py310haa95532_0
      - defaults/noarch::conda-index==0.4.0=pyhd3eb1b0_0
      - defaults/noarch::conda-token==0.4.0=pyhd3eb1b0_0
      - defaults/win-64::contourpy==1.2.0=py310h59b6b97_0
      - defaults/win-64::curl==7.87.0=h2bbff1b_0
      - defaults/win-64::daal4py==2023.0.2=py310hf497b98_0
      - defaults/win-64::dask==2022.7.0=py310haa95532_0
      - defaults/win-64::datashader==0.14.4=py310haa95532_0
      - defaults/win-64::datashape==0.5.4=py310haa95532_1
      - defaults/win-64::distributed==2022.7.0=py310haa95532_0
      - defaults/win-64::fontconfig==2.14.1=hc0defaf_1
      - defaults/win-64::gensim==4.3.0=py310h4ed8f06_0
      - defaults/win-64::graphviz==2.50.0=h7eca76f_1
      - defaults/win-64::h5py==3.7.0=py310hfc34f40_0
      - defaults/win-64::harfbuzz==4.3.0=hb646838_1
      - defaults/win-64::holoviews==1.15.4=py310haa95532_0
      - defaults/win-64::hvplot==0.8.2=py310haa95532_0
      - defaults/win-64::imagecodecs==2023.1.23=py310h6c6a46e_0
      - defaults/win-64::imageio==2.33.1=py310haa95532_0
      - defaults/win-64::imbalanced-learn==0.10.1=py310haa95532_0
      - defaults/win-64::intake==0.6.7=py310haa95532_0
      - defaults/win-64::ipykernel==6.28.0=py310haa95532_0
      - defaults/win-64::ipython==8.20.0=py310haa95532_0
      - defaults/noarch::ipywidgets==7.6.5=pyhd3eb1b0_1
      - defaults/win-64::itemloaders==1.1.0=py310haa95532_0
      - defaults/win-64::jupyter==1.0.0=py310haa95532_8
      - defaults/win-64::jupyterlab==3.5.3=py310haa95532_0
      - defaults/win-64::jupyterlab_server==2.19.0=py310haa95532_0
      - defaults/win-64::jupyter_client==7.4.9=py310haa95532_0
      - defaults/win-64::jupyter_console==6.6.3=py310haa95532_0
      - defaults/win-64::jupyter_server==1.23.4=py310haa95532_0
      - defaults/win-64::libcurl==7.87.0=h86230a5_0
      - defaults/win-64::libgd==2.3.3=hd77b12b_2
      - defaults/win-64::libmamba==1.5.8=h99b1521_2
      - defaults/win-64::libmambapy==1.5.8=py310h77c03ed_2
      - defaults/win-64::libpq==12.17=h906ac69_0
      - defaults/win-64::libssh2==1.10.0=hcd4344a_0
      - defaults/win-64::matplotlib==3.7.0=py310haa95532_0
      - defaults/win-64::mkl_fft==1.3.1=py310ha0764ea_0
      - defaults/win-64::mkl_random==1.2.2=py310h4ed8f06_0
      - defaults/win-64::navigator-updater==0.5.0=py310haa95532_0
      - defaults/win-64::nbclassic==0.5.2=py310haa95532_0
      - defaults/win-64::nbclient==0.8.0=py310haa95532_0
      - defaults/win-64::nbconvert==7.10.0=py310haa95532_0
      - defaults/win-64::notebook==6.5.2=py310haa95532_0
      - defaults/win-64::notebook-shim==0.2.2=py310haa95532_0
      - defaults/win-64::numba==0.59.1=py310hd77b12b_0
      - defaults/win-64::numexpr==2.8.4=py310hd213c9f_0
      - defaults/win-64::numpy==1.24.3=py310hdc03b94_0
      - defaults/win-64::pandas==2.2.1=py310h5da7b33_0
      - defaults/win-64::panel==0.14.3=py310haa95532_0
      - defaults/win-64::pango==1.50.7=h78c2152_0
      - defaults/win-64::parsel==1.8.1=py310haa95532_0
      - defaults/win-64::patsy==0.5.3=py310haa95532_0
      - defaults/win-64::poppler==22.12.0=h268424c_0
      - defaults/win-64::pycurl==7.45.1=py310hcd4344a_0
      - defaults/win-64::pyerfa==2.0.0=py310h2bbff1b_0
      - defaults/win-64::pytables==3.7.0=py310h388bc9b_1
      - defaults/win-64::python-graphviz==0.20.1=py310haa95532_0
      - defaults/win-64::pytorch==1.12.1=cpu_py310h5e1f01c_1
      - defaults/win-64::pywavelets==1.5.0=py310h9128911_0
      - defaults/win-64::qtconsole==5.4.2=py310haa95532_0
      - defaults/win-64::qtwebkit==5.212=h3ad3cdb_4
      - defaults/win-64::scikit-image==0.19.3=py310hd77b12b_1
      - defaults/win-64::scikit-learn==1.2.1=py310hd77b12b_0
      - defaults/win-64::scikit-learn-intelex==2023.0.2=py310haa95532_0
      - defaults/win-64::scipy==1.10.1=py310hb9afe5d_0
      - defaults/win-64::scrapy==2.8.0=py310haa95532_0
      - defaults/win-64::spyder==5.4.1=py310haa95532_0
      - defaults/win-64::spyder-kernels==2.4.4=py310haa95532_0
      - defaults/win-64::statsmodels==0.13.5=py310h9128911_1
      - defaults/win-64::terminado==0.17.1=py310haa95532_0
      - defaults/win-64::tifffile==2023.4.12=py310haa95532_0
      - defaults/win-64::transformers==4.24.0=py310haa95532_0
      - defaults/win-64::widgetsnbextension==3.5.2=py310haa95532_0
      - defaults/win-64::xarray==2022.11.0=py310haa95532_0
    unsuccessful initial attempt using frozen solve. Retrying with flexible solve.
    Solving environment: done
    Collecting package metadata (repodata.json): done
    Solving environment: /
    The environment is inconsistent, please check the package plan carefully
    The following packages are causing the inconsistenc-
    
      - defaults/win-64::anaconda-navigator==2.5.0=py310haa95532_0
      - defaults/win-64::anaconda-project==0.11.1=py310haa95532_0
      - defaults/win-64::astropy==5.1=py310h9128911_0
      - defaults/win-64::bokeh==2.4.3=py310haa95532_0
      - defaults/win-64::bottleneck==1.3.7=py310h9128911_0
      - defaults/win-64::cairo==1.16.0=haedb8bc_4
      - defaults/win-64::conda==24.4.0=py310haa95532_0
      - defaults/win-64::conda-build==24.3.0=py310haa95532_0
      - defaults/noarch::conda-index==0.4.0=pyhd3eb1b0_0
      - defaults/noarch::conda-token==0.4.0=pyhd3eb1b0_0
      - defaults/win-64::contourpy==1.2.0=py310h59b6b97_0
      - defaults/win-64::curl==7.87.0=h2bbff1b_0
      - defaults/win-64::daal4py==2023.0.2=py310hf497b98_0
      - defaults/win-64::dask==2022.7.0=py310haa95532_0
      - defaults/win-64::datashader==0.14.4=py310haa95532_0
      - defaults/win-64::datashape==0.5.4=py310haa95532_1
      - defaults/win-64::distributed==2022.7.0=py310haa95532_0
      - defaults/win-64::fontconfig==2.14.1=hc0defaf_1
      - defaults/win-64::gensim==4.3.0=py310h4ed8f06_0
      - defaults/win-64::graphviz==2.50.0=h7eca76f_1
      - defaults/win-64::h5py==3.7.0=py310hfc34f40_0
      - defaults/win-64::harfbuzz==4.3.0=hb646838_1
      - defaults/win-64::holoviews==1.15.4=py310haa95532_0
      - defaults/win-64::hvplot==0.8.2=py310haa95532_0
      - defaults/win-64::imagecodecs==2023.1.23=py310h6c6a46e_0
      - defaults/win-64::imageio==2.33.1=py310haa95532_0
      - defaults/win-64::imbalanced-learn==0.10.1=py310haa95532_0
      - defaults/win-64::intake==0.6.7=py310haa95532_0
      - defaults/win-64::ipykernel==6.28.0=py310haa95532_0
      - defaults/win-64::ipython==8.20.0=py310haa95532_0
      - defaults/noarch::ipywidgets==7.6.5=pyhd3eb1b0_1
      - defaults/win-64::itemloaders==1.1.0=py310haa95532_0
      - defaults/win-64::jupyter==1.0.0=py310haa95532_8
      - defaults/win-64::jupyterlab==3.5.3=py310haa95532_0
      - defaults/win-64::jupyterlab_server==2.19.0=py310haa95532_0
      - defaults/win-64::jupyter_client==7.4.9=py310haa95532_0
      - defaults/win-64::jupyter_console==6.6.3=py310haa95532_0
      - defaults/win-64::jupyter_server==1.23.4=py310haa95532_0
      - defaults/win-64::libcurl==7.87.0=h86230a5_0
      - defaults/win-64::libgd==2.3.3=hd77b12b_2
      - defaults/win-64::libmamba==1.5.8=h99b1521_2
      - defaults/win-64::libmambapy==1.5.8=py310h77c03ed_2
      - defaults/win-64::libpq==12.17=h906ac69_0
      - defaults/win-64::libssh2==1.10.0=hcd4344a_0
      - defaults/win-64::matplotlib==3.7.0=py310haa95532_0
      - defaults/win-64::mkl_fft==1.3.1=py310ha0764ea_0
      - defaults/win-64::mkl_random==1.2.2=py310h4ed8f06_0
      - defaults/win-64::navigator-updater==0.5.0=py310haa95532_0
      - defaults/win-64::nbclassic==0.5.2=py310haa95532_0
      - defaults/win-64::nbclient==0.8.0=py310haa95532_0
      - defaults/win-64::nbconvert==7.10.0=py310haa95532_0
      - defaults/win-64::notebook==6.5.2=py310haa95532_0
      - defaults/win-64::notebook-shim==0.2.2=py310haa95532_0
      - defaults/win-64::numba==0.59.1=py310hd77b12b_0
      - defaults/win-64::numexpr==2.8.4=py310hd213c9f_0
      - defaults/win-64::numpy==1.24.3=py310hdc03b94_0
      - defaults/win-64::pandas==2.2.1=py310h5da7b33_0
      - defaults/win-64::panel==0.14.3=py310haa95532_0
      - defaults/win-64::pango==1.50.7=h78c2152_0
      - defaults/win-64::parsel==1.8.1=py310haa95532_0
      - defaults/win-64::patsy==0.5.3=py310haa95532_0
      - defaults/win-64::poppler==22.12.0=h268424c_0
      - defaults/win-64::pycurl==7.45.1=py310hcd4344a_0
      - defaults/win-64::pyerfa==2.0.0=py310h2bbff1b_0
      - defaults/win-64::pytables==3.7.0=py310h388bc9b_1
      - defaults/win-64::python-graphviz==0.20.1=py310haa95532_0
      - defaults/win-64::pytorch==1.12.1=cpu_py310h5e1f01c_1
      - defaults/win-64::pywavelets==1.5.0=py310h9128911_0
      - defaults/win-64::qtconsole==5.4.2=py310haa95532_0
      - defaults/win-64::qtwebkit==5.212=h3ad3cdb_4
      - defaults/win-64::scikit-image==0.19.3=py310hd77b12b_1
      - defaults/win-64::scikit-learn==1.2.1=py310hd77b12b_0
      - defaults/win-64::scikit-learn-intelex==2023.0.2=py310haa95532_0
      - defaults/win-64::scipy==1.10.1=py310hb9afe5d_0
      - defaults/win-64::scrapy==2.8.0=py310haa95532_0
      - defaults/win-64::spyder==5.4.1=py310haa95532_0
      - defaults/win-64::spyder-kernels==2.4.4=py310haa95532_0
      - defaults/win-64::statsmodels==0.13.5=py310h9128911_1
      - defaults/win-64::terminado==0.17.1=py310haa95532_0
      - defaults/win-64::tifffile==2023.4.12=py310haa95532_0
      - defaults/win-64::transformers==4.24.0=py310haa95532_0
      - defaults/win-64::widgetsnbextension==3.5.2=py310haa95532_0
      - defaults/win-64::xarray==2022.11.0=py310haa95532_0
    unsuccessful initial attempt using frozen solve. Retrying with flexible solve.
    Solving environment: done
    
    ## Package Plan ##
    
      environment location: d:\ProgramData\anaconda3
    
      added / updated specs:
        - python=3.11.10
    
    
    The following packages will be downloaded:
    
        package                    |            build
        ---------------------------|-----------------
        alabaster-0.7.12           |     pyhd3eb1b0_0          16 KB  defaults
        anaconda-anon-usage-0.4.4  |py311hfc23b7f_100          30 KB  defaults
        anaconda-client-1.12.3     |  py311haa95532_0         227 KB  defaults
        anaconda-cloud-auth-0.5.1  |  py311haa95532_0          50 KB  defaults
        anaconda-navigator-2.5.0   |  py311haa95532_0         5.7 MB  defaults
        anaconda-project-0.11.1    |  py311haa95532_0         682 KB  defaults
        annotated-types-0.6.0      |  py311haa95532_0          26 KB  defaults
        anyio-4.6.2                |  py311haa95532_0         253 KB  defaults
        appdirs-1.4.4              |     pyhd3eb1b0_0          12 KB  defaults
        argon2-cffi-21.3.0         |     pyhd3eb1b0_0          15 KB  defaults
        argon2-cffi-bindings-21.2.0|  py311h2bbff1b_0          33 KB  defaults
        arrow-1.3.0                |  py311haa95532_0         187 KB  defaults
        arrow-cpp-16.1.0           |       h7cd61ee_0         7.4 MB  defaults
        astroid-2.14.2             |  py311haa95532_0         493 KB  defaults
        astropy-6.1.3              |  py311h827c3e9_0        12.2 MB  defaults
        astropy-iers-data-0.2024.9.2.0.33.23|  py311haa95532_0         1.6 MB  defaults
        asttokens-2.0.5            |     pyhd3eb1b0_0          20 KB  defaults
        async-lru-2.0.4            |  py311haa95532_0          21 KB  defaults
        atomicwrites-1.4.0         |             py_0          11 KB  defaults
        attrs-24.2.0               |  py311haa95532_0         175 KB  defaults
        automat-20.2.0             |             py_0          31 KB  defaults
        autopep8-1.6.0             |     pyhd3eb1b0_1          43 KB  defaults
        aws-c-auth-0.6.19          |       h2bbff1b_0          95 KB  defaults
        aws-c-cal-0.5.20           |       h2bbff1b_0          41 KB  defaults
        aws-c-common-0.8.5         |       h2bbff1b_0         198 KB  defaults
        aws-c-compression-0.2.16   |       h2bbff1b_0          21 KB  defaults
        aws-c-event-stream-0.2.15  |       hd77b12b_0          50 KB  defaults
        aws-c-http-0.6.25          |       h2bbff1b_0         181 KB  defaults
        aws-c-io-0.13.10           |       h2bbff1b_0         153 KB  defaults
        aws-c-mqtt-0.7.13          |       h2bbff1b_0          65 KB  defaults
        aws-c-s3-0.1.51            |       h2bbff1b_0          68 KB  defaults
        aws-c-sdkutils-0.1.6       |       h2bbff1b_0          48 KB  defaults
        aws-checksums-0.1.13       |       h2bbff1b_0          50 KB  defaults
        aws-crt-cpp-0.18.16        |       hd77b12b_0         194 KB  defaults
        aws-sdk-cpp-1.10.55        |       hd77b12b_0         2.1 MB  defaults
        babel-2.11.0               |  py311haa95532_0         6.1 MB  defaults
        backcall-0.2.0             |     pyhd3eb1b0_0          13 KB  defaults
        backports-1.1              |     pyhd3eb1b0_0           4 KB  defaults
        backports.functools_lru_cache-1.6.4|     pyhd3eb1b0_0           9 KB  defaults
        backports.tempfile-1.0     |     pyhd3eb1b0_1          11 KB  defaults
        backports.weakref-1.0.post1|             py_1           8 KB  defaults
        bcrypt-3.2.0               |  py311h2bbff1b_1          38 KB  defaults
        beautifulsoup4-4.12.3      |  py311haa95532_0         273 KB  defaults
        binaryornot-0.4.4          |     pyhd3eb1b0_1         351 KB  defaults
        black-24.8.0               |  py311haa95532_0         413 KB  defaults
        bleach-4.1.0               |     pyhd3eb1b0_0         123 KB  defaults
        bokeh-3.6.0                |  py311haa95532_0         5.7 MB  defaults
        boltons-23.0.0             |  py311haa95532_0         478 KB  defaults
        bottleneck-1.3.7           |  py311hd7041d2_0         134 KB  defaults
        brotli-python-1.0.9        |  py311hd77b12b_8         347 KB  defaults
        brotlipy-0.7.0             |py311h2bbff1b_1002         303 KB  defaults
        c-ares-1.19.1              |       h2bbff1b_0         117 KB  defaults
        c-blosc2-2.12.0            |       h2f4ed9d_0         222 KB  defaults
        ca-certificates-2024.9.24  |       haa95532_0         131 KB  defaults
        certifi-2024.8.30          |  py311haa95532_0         165 KB  defaults
        cffi-1.17.1                |  py311h827c3e9_0         319 KB  defaults
        chardet-4.0.0              |py311haa95532_1003         239 KB  defaults
        charset-normalizer-2.0.4   |     pyhd3eb1b0_0          35 KB  defaults
        click-8.1.7                |  py311haa95532_0         222 KB  defaults
        cloudpickle-3.0.0          |  py311haa95532_0          41 KB  defaults
        clyent-1.2.2               |  py311haa95532_1          26 KB  defaults
        colorama-0.4.6             |  py311haa95532_0          36 KB  defaults
        colorcet-3.1.0             |  py311haa95532_0         614 KB  defaults
        comm-0.2.1                 |  py311haa95532_0          17 KB  defaults
        conda-24.9.2               |  py311haa95532_0         1.2 MB  defaults
        conda-build-24.9.0         |  py311haa95532_0         788 KB  defaults
        conda-content-trust-0.2.0  |  py311haa95532_1          92 KB  defaults
        conda-libmamba-solver-24.9.0|     pyhd3eb1b0_0          40 KB  defaults
        conda-pack-0.6.0           |     pyhd3eb1b0_0          29 KB  defaults
        conda-package-handling-2.3.0|  py311haa95532_0         306 KB  defaults
        conda-package-streaming-0.10.0|  py311haa95532_0          35 KB  defaults
        conda-repo-cli-1.0.114     |  py311haa95532_0         220 KB  defaults
        conda-token-0.5.0          |     pyhd3eb1b0_0          11 KB  defaults
        conda-verify-3.4.2         |             py_1          27 KB  defaults
        constantly-23.10.4         |  py311haa95532_0          33 KB  defaults
        contourpy-1.2.0            |  py311h59b6b97_0         218 KB  defaults
        cookiecutter-2.6.0         |  py311haa95532_0         161 KB  defaults
        cryptography-43.0.0        |  py311h89fc84f_0         1.4 MB  defaults
        cssselect-1.2.0            |  py311haa95532_0          49 KB  defaults
        curl-7.43.0                |                1         292 KB  https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
        cycler-0.11.0              |     pyhd3eb1b0_0          12 KB  defaults
        cytoolz-0.12.2             |  py311h2bbff1b_0         339 KB  defaults
        daal4py-2023.0.2           |  py311h45a1f87_0         8.1 MB  defaults
        dask-2024.8.2              |  py311haa95532_0           7 KB  defaults
        dask-core-2024.8.2         |  py311haa95532_0         3.1 MB  defaults
        dask-expr-1.1.13           |  py311haa95532_0         567 KB  defaults
        datashader-0.16.3          |  py311haa95532_0        17.2 MB  defaults
        datashape-0.5.4            |  py311haa95532_1         143 KB  defaults
        debugpy-1.6.7              |  py311hd77b12b_0         3.3 MB  defaults
        defusedxml-0.7.1           |     pyhd3eb1b0_0          23 KB  defaults
        diff-match-patch-20200713  |     pyhd3eb1b0_0          35 KB  defaults
        dill-0.3.8                 |  py311haa95532_0         263 KB  defaults
        distributed-2024.8.2       |  py311haa95532_0         1.7 MB  defaults
        distro-1.9.0               |  py311haa95532_0          61 KB  defaults
        docstring-to-markdown-0.11 |  py311haa95532_0          35 KB  defaults
        docutils-0.18.1            |  py311haa95532_3         881 KB  defaults
        entrypoints-0.4            |  py311haa95532_0          18 KB  defaults
        et_xmlfile-1.1.0           |  py311haa95532_0          11 KB  defaults
        exceptiongroup-1.2.0       |  py311haa95532_0          37 KB  defaults
        executing-0.8.3            |     pyhd3eb1b0_0          18 KB  defaults
        filelock-3.13.1            |  py311haa95532_0          24 KB  defaults
        flake8-6.0.0               |  py311haa95532_0         188 KB  defaults
        flask-2.2.5                |  py311haa95532_0         208 KB  defaults
        flit-core-3.9.0            |  py311he100be2_1         112 KB  defaults
        fontconfig-2.14.1          |       h9c4af85_2         198 KB  defaults
        fonttools-4.51.0           |  py311h2bbff1b_0         2.6 MB  defaults
        frozendict-2.4.2           |  py311haa95532_0          38 KB  defaults
        fsspec-2024.6.1            |  py311haa95532_0         384 KB  defaults
        future-0.18.3              |  py311haa95532_0         852 KB  defaults
        gensim-4.3.3               |  py311hea22821_0        42.4 MB  defaults
        gflags-2.2.2               |       hd77b12b_1         247 KB  defaults
        glob2-0.7                  |     pyhd3eb1b0_0          12 KB  defaults
        glog-0.5.0                 |       hd77b12b_1          93 KB  defaults
        gmpy2-2.1.2                |  py311h7f96b67_0         140 KB  defaults
        greenlet-3.0.1             |  py311hd77b12b_0         222 KB  defaults
        h11-0.14.0                 |  py311haa95532_0         118 KB  defaults
        h5py-3.7.0                 |  py311h259cc0e_0         885 KB  defaults
        heapdict-1.0.1             |     pyhd3eb1b0_0           8 KB  defaults
        holoviews-1.19.1           |  py311haa95532_0         5.9 MB  defaults
        httpcore-1.0.2             |  py311haa95532_0         118 KB  defaults
        httpx-0.27.0               |  py311haa95532_0         235 KB  defaults
        huggingface_hub-0.24.6     |  py311haa95532_0         639 KB  defaults
        hvplot-0.11.0              |  py311haa95532_0         358 KB  defaults
        hyperlink-21.0.0           |     pyhd3eb1b0_0          70 KB  defaults
        idna-3.7                   |  py311haa95532_0         133 KB  defaults
        imagecodecs-2023.1.23      |  py311he6ff3c7_0         8.9 MB  defaults
        imageio-2.33.1             |  py311haa95532_0         645 KB  defaults
        imagesize-1.4.1            |  py311haa95532_0          17 KB  defaults
        imbalanced-learn-0.12.3    |  py311haa95532_1         425 KB  defaults
        importlib-metadata-7.0.1   |  py311haa95532_0          49 KB  defaults
        inflection-0.5.1           |  py311haa95532_0          13 KB  defaults
        iniconfig-1.1.1            |     pyhd3eb1b0_0           8 KB  defaults
        intake-2.0.7               |  py311haa95532_0         301 KB  defaults
        intel-openmp-2023.1.0      |   h59b6b97_46320         2.7 MB  defaults
        intervaltree-3.1.0         |     pyhd3eb1b0_0          25 KB  defaults
        ipykernel-6.29.5           |  py311haa95532_0         254 KB  defaults
        ipython-8.27.0             |  py311haa95532_0         1.5 MB  defaults
        ipython_genutils-0.2.0     |     pyhd3eb1b0_1          27 KB  defaults
        ipywidgets-7.6.5           |     pyhd3eb1b0_1         105 KB  defaults
        isort-5.9.3                |     pyhd3eb1b0_0          83 KB  defaults
        itemadapter-0.3.0          |     pyhd3eb1b0_0          13 KB  defaults
        itemloaders-1.1.0          |  py311haa95532_0          31 KB  defaults
        jedi-0.18.1                |  py311haa95532_1         1.1 MB  defaults
        jellyfish-1.0.1            |  py311h36a85e1_0         218 KB  defaults
        jinja2-3.1.4               |  py311haa95532_0         355 KB  defaults
        jinja2-time-0.2.0          |     pyhd3eb1b0_3           9 KB  defaults
        jmespath-1.0.1             |  py311haa95532_0          51 KB  defaults
        joblib-1.4.2               |  py311haa95532_0         531 KB  defaults
        json5-0.9.6                |     pyhd3eb1b0_0          21 KB  defaults
        jsonpatch-1.33             |  py311haa95532_1          63 KB  defaults
        jsonschema-4.23.0          |  py311haa95532_0         229 KB  defaults
        jsonschema-specifications-2023.7.1|  py311haa95532_0          16 KB  defaults
        jupyter-1.0.0              |  py311haa95532_9           8 KB  defaults
        jupyter-lsp-2.2.0          |  py311haa95532_0         107 KB  defaults
        jupyter_client-8.6.0       |  py311haa95532_0         252 KB  defaults
        jupyter_console-6.6.3      |  py311haa95532_0          76 KB  defaults
        jupyter_core-5.7.2         |  py311haa95532_0         126 KB  defaults
        jupyter_events-0.10.0      |  py311haa95532_0          67 KB  defaults
        jupyter_server-2.14.1      |  py311haa95532_0         626 KB  defaults
        jupyter_server_terminals-0.4.4|  py311haa95532_1          29 KB  defaults
        jupyterlab-4.2.5           |  py311haa95532_0         5.5 MB  defaults
        jupyterlab_pygments-0.1.2  |             py_0           8 KB  defaults
        jupyterlab_server-2.27.3   |  py311haa95532_0         114 KB  defaults
        jupyterlab_widgets-3.0.10  |  py311haa95532_0         196 KB  defaults
        keyring-24.3.1             |  py311haa95532_0         100 KB  defaults
        kiwisolver-1.4.4           |  py311hd77b12b_0          55 KB  defaults
        lazy-object-proxy-1.10.0   |  py311h2bbff1b_0          39 KB  defaults
        lazy_loader-0.4            |  py311haa95532_0          25 KB  defaults
        libabseil-20240116.2       | cxx17_h5da7b33_0         1.9 MB  defaults
        libcurl-8.9.1              |       h0416ee5_0         372 KB  defaults
        libevent-2.0.21            |                0         2.5 MB  https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
        libgrpc-1.62.2             |       hf25190f_0        17.2 MB  defaults
        libmambapy-1.5.8           |  py311h77c03ed_2         674 KB  defaults
        libpq-12.15                |       h906ac69_0         3.1 MB  defaults
        libprotobuf-4.25.3         |       hf2fb9eb_0         6.2 MB  defaults
        libssh2-1.11.0             |       h291bd65_0         285 KB  defaults
        libthrift-0.15.0           |       h4364b78_2         777 KB  defaults
        linkify-it-py-2.0.0        |  py311haa95532_0          40 KB  defaults
        llvmlite-0.43.0            |  py311hf2fb9eb_0        18.6 MB  defaults
        locket-1.0.0               |  py311haa95532_0          13 KB  defaults
        lxml-5.2.1                 |  py311h09808a7_0         1.1 MB  defaults
        lz4-4.3.2                  |  py311h2bbff1b_0          79 KB  defaults
        markdown-3.4.1             |  py311haa95532_0         183 KB  defaults
        markdown-it-py-2.2.0       |  py311haa95532_1         160 KB  defaults
        markupsafe-2.1.3           |  py311h2bbff1b_0          28 KB  defaults
        matplotlib-3.9.2           |  py311haa95532_0           8 KB  defaults
        matplotlib-base-3.9.2      |  py311h472561b_0         9.4 MB  defaults
        matplotlib-inline-0.1.6    |  py311haa95532_0          19 KB  defaults
        mccabe-0.7.0               |     pyhd3eb1b0_0          11 KB  defaults
        mdit-py-plugins-0.3.0      |  py311haa95532_0          66 KB  defaults
        mdurl-0.1.0                |  py311haa95532_0          22 KB  defaults
        menuinst-2.1.2             |  py311h5da7b33_0         231 KB  defaults
        mistune-2.0.4              |  py311haa95532_0         108 KB  defaults
        mkl-2023.1.0               |   h6b88ed4_46358       155.9 MB  defaults
        mkl-service-2.4.0          |  py311h2bbff1b_1          44 KB  defaults
        mkl_fft-1.3.10             |  py311h827c3e9_0         190 KB  defaults
        mkl_random-1.2.7           |  py311hea22821_0         291 KB  defaults
        mock-4.0.3                 |     pyhd3eb1b0_0          29 KB  defaults
        more-itertools-10.3.0      |  py311haa95532_0         145 KB  defaults
        mpc-1.1.0                  |       h7edee0f_1         260 KB  defaults
        mpfr-4.0.2                 |       h62dcd97_1         1.5 MB  defaults
        mpir-3.0.0                 |       hec2e145_1         1.3 MB  defaults
        mpmath-1.3.0               |  py311haa95532_0         1.0 MB  defaults
        msgpack-python-1.0.3       |  py311h59b6b97_0          37 KB  defaults
        multipledispatch-0.6.0     |  py311haa95532_0          30 KB  defaults
        munkres-1.1.4              |             py_0          13 KB  defaults
        mypy_extensions-1.0.0      |  py311haa95532_0          14 KB  defaults
        navigator-updater-0.5.1    |  py311haa95532_0         2.3 MB  defaults
        nbclassic-1.1.0            |  py311haa95532_0         6.1 MB  defaults
        nbclient-0.8.0             |  py311haa95532_0         137 KB  defaults
        nbconvert-7.16.4           |  py311haa95532_0         543 KB  defaults
        nbformat-5.10.4            |  py311haa95532_0         189 KB  defaults
        nest-asyncio-1.6.0         |  py311haa95532_0          17 KB  defaults
        networkx-3.3               |  py311haa95532_0         3.1 MB  defaults
        nltk-3.7                   |     pyhd3eb1b0_0        1010 KB  defaults
        notebook-7.2.2             |  py311haa95532_1         4.0 MB  defaults
        notebook-shim-0.2.3        |  py311haa95532_0          27 KB  defaults
        numba-0.60.0               |  py311hea22821_0         5.9 MB  defaults
        numexpr-2.8.7              |  py311h1fcbade_0         160 KB  defaults
        numpy-1.26.4               |  py311hdab7c0b_0          11 KB  defaults
        numpy-base-1.26.4          |  py311hd01c5d8_0         9.1 MB  defaults
        numpydoc-1.5.0             |  py311haa95532_0         114 KB  defaults
        openssl-3.0.15             |       h827c3e9_0         7.8 MB  defaults
        orc-2.0.1                  |       hd8d391b_0         1.1 MB  defaults
        overrides-7.4.0            |  py311haa95532_0          38 KB  defaults
        packaging-24.1             |  py311haa95532_0         170 KB  defaults
        pandas-2.2.2               |  py311hea22821_0        14.7 MB  defaults
        pandocfilters-1.5.0        |     pyhd3eb1b0_0          11 KB  defaults
        panel-1.5.2                |  py311haa95532_0        21.5 MB  defaults
        param-2.1.1                |  py311haa95532_0         275 KB  defaults
        paramiko-2.8.1             |     pyhd3eb1b0_0         139 KB  defaults
        parsel-1.8.1               |  py311haa95532_0          52 KB  defaults
        parso-0.8.3                |     pyhd3eb1b0_0          70 KB  defaults
        partd-1.4.1                |  py311haa95532_0          49 KB  defaults
        pathlib-1.0.1              |     pyhd3eb1b0_1          17 KB  defaults
        pathspec-0.10.3            |  py311haa95532_0          54 KB  defaults
        patsy-0.5.6                |  py311haa95532_0         364 KB  defaults
        pep8-1.7.1                 |  py311haa95532_1          85 KB  defaults
        pexpect-4.8.0              |     pyhd3eb1b0_3          53 KB  defaults
        pickleshare-0.7.5          |  pyhd3eb1b0_1003          13 KB  defaults
        pillow-9.4.0               |  py311hd77b12b_0         1.0 MB  defaults
        pip-24.2                   |  py311haa95532_0         3.0 MB  defaults
        pkce-1.0.3                 |  py311haa95532_0          10 KB  defaults
        pkginfo-1.10.0             |  py311haa95532_0          93 KB  defaults
        platformdirs-3.10.0        |  py311haa95532_0          40 KB  defaults
        pluggy-1.0.0               |  py311haa95532_1          33 KB  defaults
        ply-3.11                   |  py311haa95532_0         111 KB  defaults
        pooch-1.7.0                |  py311haa95532_0         109 KB  defaults
        poyo-0.5.0                 |     pyhd3eb1b0_0          17 KB  defaults
        prometheus_client-0.14.1   |  py311haa95532_0         121 KB  defaults
        prompt-toolkit-3.0.43      |  py311haa95532_0         746 KB  defaults
        protego-0.1.16             |             py_0         2.2 MB  defaults
        ptyprocess-0.7.0           |     pyhd3eb1b0_2          17 KB  defaults
        pure_eval-0.2.2            |     pyhd3eb1b0_0          14 KB  defaults
        py-1.11.0                  |     pyhd3eb1b0_0          76 KB  defaults
        py-cpuinfo-9.0.0           |  py311haa95532_0          87 KB  defaults
        py-lief-0.12.3             |  py311hd77b12b_0         1.8 MB  defaults
        pyarrow-16.1.0             |  py311hea22821_0         3.6 MB  defaults
        pyasn1-0.4.8               |     pyhd3eb1b0_0          54 KB  defaults
        pyasn1-modules-0.2.8       |             py_0          72 KB  defaults
        pycodestyle-2.10.0         |  py311haa95532_0          99 KB  defaults
        pycosat-0.6.6              |  py311h2bbff1b_1          94 KB  defaults
        pycparser-2.21             |     pyhd3eb1b0_0          94 KB  defaults
        pyct-0.5.0                 |  py311haa95532_0          53 KB  defaults
        pycurl-7.45.3              |  py311h3f729d1_0         152 KB  defaults
        pydantic-2.8.2             |  py311haa95532_0         798 KB  defaults
        pydantic-core-2.20.1       |  py311hefb1915_0         1.8 MB  defaults
        pydispatcher-2.0.5         |  py311haa95532_2          24 KB  defaults
        pydocstyle-6.3.0           |  py311haa95532_0         105 KB  defaults
        pyerfa-2.0.1.4             |  py311h57dcf0c_0         403 KB  defaults
        pyflakes-3.0.1             |  py311haa95532_0         158 KB  defaults
        pygments-2.15.1            |  py311haa95532_1         2.0 MB  defaults
        pyhamcrest-2.0.2           |     pyhd3eb1b0_2          31 KB  defaults
        pyjwt-2.8.0                |  py311haa95532_0          87 KB  defaults
        pylint-2.16.2              |  py311haa95532_0         926 KB  defaults
        pylint-venv-3.0.3          |  py311haa95532_0          13 KB  defaults
        pyls-spyder-0.4.0          |     pyhd3eb1b0_0          11 KB  defaults
        pynacl-1.5.0               |  py311h8cc25b3_0         1.2 MB  defaults
        pyodbc-5.1.0               |  py311h5da7b33_0          75 KB  defaults
        pyopenssl-24.2.1           |  py311haa95532_0         122 KB  defaults
        pyparsing-3.1.2            |  py311haa95532_0         464 KB  defaults
        pyqt-5.15.10               |  py311hd77b12b_0         4.1 MB  defaults
        pyqt5-sip-12.13.0          |  py311h2bbff1b_0          75 KB  defaults
        pyqtwebengine-5.15.10      |  py311hd77b12b_0         134 KB  defaults
        pyrsistent-0.20.0          |  py311h2bbff1b_0         119 KB  defaults
        pysocks-1.7.1              |  py311haa95532_0          36 KB  defaults
        pytables-3.8.0             |  py311ha4dc190_2         2.3 MB  defaults
        pytest-7.4.4               |  py311haa95532_0         1.2 MB  defaults
        python-3.11.10             |       h4607a30_0        18.7 MB  defaults
        python-dateutil-2.9.0post0 |  py311haa95532_2         324 KB  defaults
        python-dotenv-0.21.0       |  py311haa95532_0          55 KB  defaults
        python-fastjsonschema-2.16.2|  py311haa95532_0         245 KB  defaults
        python-graphviz-0.20.1     |  py311haa95532_0          77 KB  defaults
        python-json-logger-2.0.7   |  py311haa95532_0          19 KB  defaults
        python-libarchive-c-2.9    |     pyhd3eb1b0_1          47 KB  defaults
        python-lmdb-1.4.1          |  py311hd77b12b_0         148 KB  defaults
        python-lsp-black-2.0.0     |  py311haa95532_0          17 KB  defaults
        python-lsp-server-1.7.2    |  py311haa95532_0         160 KB  defaults
        python-slugify-5.0.2       |     pyhd3eb1b0_0          13 KB  defaults
        python-snappy-0.6.1        |  py311hd77b12b_0          36 KB  defaults
        pytoolconfig-1.2.6         |  py311haa95532_0          36 KB  defaults
        pytorch-2.3.0              |cpu_py311he6429e2_1       114.7 MB  defaults
        pytz-2024.1                |  py311haa95532_0         223 KB  defaults
        pyviz_comms-3.0.2          |  py311haa95532_0          57 KB  defaults
        pywavelets-1.7.0           |  py311h827c3e9_0         3.6 MB  defaults
        pywin32-ctypes-0.2.2       |  py311haa95532_0          56 KB  defaults
        pywinpty-2.0.10            |  py311h5da7b33_0         214 KB  defaults
        pyyaml-6.0.2               |  py311h827c3e9_0         205 KB  defaults
        pyzmq-25.1.2               |  py311hd77b12b_0         493 KB  defaults
        qdarkstyle-3.0.2           |     pyhd3eb1b0_0         337 KB  defaults
        qstylizer-0.2.2            |  py311haa95532_0          34 KB  defaults
        qtawesome-1.3.1            |  py311haa95532_0         1.7 MB  defaults
        qtconsole-5.4.2            |  py311haa95532_0         267 KB  defaults
        qtpy-2.4.1                 |  py311haa95532_0         148 KB  defaults
        qtwebkit-5.212             |       h2bbfb41_5        11.6 MB  defaults
        queuelib-1.6.2             |  py311haa95532_0          36 KB  defaults
        re2-2022.04.01             |       hd77b12b_0         374 KB  defaults
        referencing-0.30.2         |  py311haa95532_0          78 KB  defaults
        regex-2024.9.11            |  py311h827c3e9_0         401 KB  defaults
        requests-2.32.3            |  py311haa95532_0         128 KB  defaults
        requests-file-1.5.1        |     pyhd3eb1b0_0           8 KB  defaults
        requests-toolbelt-1.0.0    |  py311haa95532_0          88 KB  defaults
        rfc3339-validator-0.1.4    |  py311haa95532_0          10 KB  defaults
        rfc3986-validator-0.1.1    |  py311haa95532_0          10 KB  defaults
        rich-13.7.1                |  py311haa95532_0         632 KB  defaults
        rope-1.12.0                |  py311haa95532_0         596 KB  defaults
        rpds-py-0.10.6             |  py311h062c2fa_0         202 KB  defaults
        rtree-1.0.1                |  py311h2eaa2aa_0          60 KB  defaults
        ruamel.yaml-0.18.6         |  py311h827c3e9_0         278 KB  defaults
        ruamel.yaml.clib-0.2.8     |  py311h827c3e9_0         126 KB  defaults
        ruamel_yaml-0.17.21        |  py311h2bbff1b_0         245 KB  defaults
        safetensors-0.4.4          |  py311h3ef4675_0         310 KB  defaults
        scikit-image-0.24.0        |  py311hea22821_0        10.3 MB  defaults
        scikit-learn-1.4.2         |  py311hf62ec03_1         9.0 MB  defaults
        scikit-learn-intelex-2023.0.2|  py311haa95532_0          97 KB  defaults
        scipy-1.13.1               |  py311h9f229c6_0        25.9 MB  defaults
        scrapy-2.11.1              |  py311haa95532_0         870 KB  defaults
        semver-3.0.2               |  py311haa95532_0         101 KB  defaults
        send2trash-1.8.2           |  py311haa95532_0          81 KB  defaults
        service_identity-18.1.0    |     pyhd3eb1b0_1          13 KB  defaults
        setuptools-75.1.0          |  py311haa95532_0         2.2 MB  defaults
        sip-6.7.12                 |  py311hd77b12b_0         615 KB  defaults
        six-1.16.0                 |     pyhd3eb1b0_1          18 KB  defaults
        smart_open-5.2.1           |  py311haa95532_0          98 KB  defaults
        sniffio-1.3.0              |  py311haa95532_0          18 KB  defaults
        snowballstemmer-2.2.0      |     pyhd3eb1b0_0          61 KB  defaults
        sortedcontainers-2.4.0     |     pyhd3eb1b0_0          26 KB  defaults
        soupsieve-2.5              |  py311haa95532_0          93 KB  defaults
        sphinx-5.0.2               |  py311haa95532_0         2.1 MB  defaults
        sphinxcontrib-applehelp-1.0.2|     pyhd3eb1b0_0          29 KB  defaults
        sphinxcontrib-devhelp-1.0.2|     pyhd3eb1b0_0          23 KB  defaults
        sphinxcontrib-htmlhelp-2.0.0|     pyhd3eb1b0_0          32 KB  defaults
        sphinxcontrib-jsmath-1.0.1 |     pyhd3eb1b0_0           8 KB  defaults
        sphinxcontrib-qthelp-1.0.3 |     pyhd3eb1b0_0          26 KB  defaults
        sphinxcontrib-serializinghtml-1.1.5|     pyhd3eb1b0_0          25 KB  defaults
        spyder-5.4.3               |  py311haa95532_1        10.9 MB  defaults
        spyder-kernels-2.4.4       |  py311haa95532_0         206 KB  defaults
        sqlalchemy-2.0.34          |  py311h54f65d0_0         6.6 MB  defaults
        stack_data-0.2.0           |     pyhd3eb1b0_0          22 KB  defaults
        statsmodels-0.14.2         |  py311h57dcf0c_0        11.9 MB  defaults
        sympy-1.13.2               |  py311haa95532_0        15.5 MB  defaults
        tabulate-0.9.0             |  py311haa95532_0          90 KB  defaults
        tbb4py-2021.8.0            |  py311h59b6b97_0          73 KB  defaults
        tblib-1.7.0                |     pyhd3eb1b0_0          15 KB  defaults
        terminado-0.17.1           |  py311haa95532_0          38 KB  defaults
        text-unidecode-1.3         |     pyhd3eb1b0_0          65 KB  defaults
        textdistance-4.2.1         |     pyhd3eb1b0_0          29 KB  defaults
        threadpoolctl-2.2.0        |     pyh0d69192_0          16 KB  defaults
        three-merge-0.1.1          |     pyhd3eb1b0_0          10 KB  defaults
        tifffile-2023.4.12         |  py311haa95532_0         529 KB  defaults
        tinycss2-1.2.1             |  py311haa95532_0          47 KB  defaults
        tldextract-3.2.0           |     pyhd3eb1b0_0          81 KB  defaults
        tokenizers-0.15.1          |  py311h49fca51_0         1.8 MB  defaults
        toml-0.10.2                |     pyhd3eb1b0_0          20 KB  defaults
        tomli-2.0.1                |  py311haa95532_0          31 KB  defaults
        tomlkit-0.13.2             |  py311haa95532_0         115 KB  defaults
        toolz-0.12.0               |  py311haa95532_0         134 KB  defaults
        tornado-6.4.1              |  py311h827c3e9_0         880 KB  defaults
        tqdm-4.66.5                |  py311h746a85d_0         190 KB  defaults
        traitlets-5.14.3           |  py311haa95532_0         226 KB  defaults
        transformers-4.37.2        |  py311haa95532_1        10.0 MB  defaults
        truststore-0.8.0           |  py311haa95532_0          47 KB  defaults
        twisted-23.10.0            |  py311haa95532_0         6.8 MB  defaults
        twisted-iocpsupport-1.0.2  |  py311h2bbff1b_0          40 KB  defaults
        typing-extensions-4.11.0   |  py311haa95532_0          10 KB  defaults
        typing_extensions-4.11.0   |  py311haa95532_0          77 KB  defaults
        uc-micro-py-1.0.1          |  py311haa95532_0          11 KB  defaults
        ujson-5.10.0               |  py311h5da7b33_0         146 KB  defaults
        unicodedata2-15.1.0        |  py311h2bbff1b_0         521 KB  defaults
        unidecode-1.2.0            |     pyhd3eb1b0_0         155 KB  defaults
        urllib3-2.2.3              |  py311haa95532_0         233 KB  defaults
        utf8proc-2.6.1             |       h2bbff1b_1          96 KB  defaults
        w3lib-2.1.2                |  py311haa95532_0          44 KB  defaults
        watchdog-4.0.1             |  py311haa95532_0         185 KB  defaults
        wcwidth-0.2.5              |     pyhd3eb1b0_0          26 KB  defaults
        webencodings-0.5.1         |  py311haa95532_1          25 KB  defaults
        websocket-client-1.8.0     |  py311haa95532_0         147 KB  defaults
        werkzeug-3.0.3             |  py311haa95532_0         412 KB  defaults
        whatthepatch-1.0.2         |  py311haa95532_0          29 KB  defaults
        wheel-0.44.0               |  py311haa95532_0         173 KB  defaults
        widgetsnbextension-3.5.2   |  py311haa95532_1         688 KB  defaults
        win_inet_pton-1.1.0        |  py311haa95532_0          10 KB  defaults
        wrapt-1.14.1               |  py311h2bbff1b_0          57 KB  defaults
        xarray-2023.6.0            |  py311haa95532_0         2.3 MB  defaults
        xlwings-0.32.1             |  py311haa95532_0         1.3 MB  defaults
        xyzservices-2022.9.0       |  py311haa95532_1          47 KB  defaults
        yapf-0.31.0                |     pyhd3eb1b0_0         126 KB  defaults
        zict-3.0.0                 |  py311haa95532_0         119 KB  defaults
        zipp-3.20.2                |  py311haa95532_0          30 KB  defaults
        zlib-ng-2.0.7              |       h2bbff1b_0          95 KB  defaults
        zope-1.0                   |  py311haa95532_1           5 KB  defaults
        zope.interface-5.4.0       |  py311h2bbff1b_0         388 KB  defaults
        zstandard-0.22.0           |  py311h3469f8a_0         354 KB  defaults
        ------------------------------------------------------------
                                               Total:       785.7 MB
    
    The following NEW packages will be INSTALLED:
    
      annotated-types    pkgs/main/win-64::annotated-types-0.6.0-py311haa95532_0
      arrow-cpp          pkgs/main/win-64::arrow-cpp-16.1.0-h7cd61ee_0
      astropy-iers-data  pkgs/main/win-64::astropy-iers-data-0.2024.9.2.0.33.23-py311haa95532_0
      async-lru          pkgs/main/win-64::async-lru-2.0.4-py311haa95532_0
      aws-c-auth         pkgs/main/win-64::aws-c-auth-0.6.19-h2bbff1b_0
      aws-c-cal          pkgs/main/win-64::aws-c-cal-0.5.20-h2bbff1b_0
      aws-c-common       pkgs/main/win-64::aws-c-common-0.8.5-h2bbff1b_0
      aws-c-compression  pkgs/main/win-64::aws-c-compression-0.2.16-h2bbff1b_0
      aws-c-event-stream pkgs/main/win-64::aws-c-event-stream-0.2.15-hd77b12b_0
      aws-c-http         pkgs/main/win-64::aws-c-http-0.6.25-h2bbff1b_0
      aws-c-io           pkgs/main/win-64::aws-c-io-0.13.10-h2bbff1b_0
      aws-c-mqtt         pkgs/main/win-64::aws-c-mqtt-0.7.13-h2bbff1b_0
      aws-c-s3           pkgs/main/win-64::aws-c-s3-0.1.51-h2bbff1b_0
      aws-c-sdkutils     pkgs/main/win-64::aws-c-sdkutils-0.1.6-h2bbff1b_0
      aws-checksums      pkgs/main/win-64::aws-checksums-0.1.13-h2bbff1b_0
      aws-crt-cpp        pkgs/main/win-64::aws-crt-cpp-0.18.16-hd77b12b_0
      aws-sdk-cpp        pkgs/main/win-64::aws-sdk-cpp-1.10.55-hd77b12b_0
      c-ares             pkgs/main/win-64::c-ares-1.19.1-h2bbff1b_0
      c-blosc2           pkgs/main/win-64::c-blosc2-2.12.0-h2f4ed9d_0
      conda-libmamba-so~ pkgs/main/noarch::conda-libmamba-solver-24.9.0-pyhd3eb1b0_0
      dask-expr          pkgs/main/win-64::dask-expr-1.1.13-py311haa95532_0
      frozendict         pkgs/main/win-64::frozendict-2.4.2-py311haa95532_0
      gflags             pkgs/main/win-64::gflags-2.2.2-hd77b12b_1
      glog               pkgs/main/win-64::glog-0.5.0-hd77b12b_1
      gmpy2              pkgs/main/win-64::gmpy2-2.1.2-py311h7f96b67_0
      h11                pkgs/main/win-64::h11-0.14.0-py311haa95532_0
      httpcore           pkgs/main/win-64::httpcore-1.0.2-py311haa95532_0
      httpx              pkgs/main/win-64::httpx-0.27.0-py311haa95532_0
      jmespath           pkgs/main/win-64::jmespath-1.0.1-py311haa95532_0
      jupyter-lsp        pkgs/main/win-64::jupyter-lsp-2.2.0-py311haa95532_0
      jupyter_events     pkgs/main/win-64::jupyter_events-0.10.0-py311haa95532_0
      jupyter_server_te~ pkgs/main/win-64::jupyter_server_terminals-0.4.4-py311haa95532_1
      lazy_loader        pkgs/main/win-64::lazy_loader-0.4-py311haa95532_0
      libabseil          pkgs/main/win-64::libabseil-20240116.2-cxx17_h5da7b33_0
      libevent           anaconda/pkgs/free/win-64::libevent-2.0.21-0
      libgrpc            pkgs/main/win-64::libgrpc-1.62.2-hf25190f_0
      libprotobuf        pkgs/main/win-64::libprotobuf-4.25.3-hf2fb9eb_0
      libthrift          pkgs/main/win-64::libthrift-0.15.0-h4364b78_2
      linkify-it-py      pkgs/main/win-64::linkify-it-py-2.0.0-py311haa95532_0
      matplotlib-base    pkgs/main/win-64::matplotlib-base-3.9.2-py311h472561b_0
      matplotlib-inline  pkgs/main/win-64::matplotlib-inline-0.1.6-py311haa95532_0
      mdit-py-plugins    pkgs/main/win-64::mdit-py-plugins-0.3.0-py311haa95532_0
      mpc                pkgs/main/win-64::mpc-1.1.0-h7edee0f_1
      mpfr               pkgs/main/win-64::mpfr-4.0.2-h62dcd97_1
      mpir               pkgs/main/win-64::mpir-3.0.0-hec2e145_1
      numpy-base         pkgs/main/win-64::numpy-base-1.26.4-py311hd01c5d8_0
      orc                pkgs/main/win-64::orc-2.0.1-hd8d391b_0
      overrides          pkgs/main/win-64::overrides-7.4.0-py311haa95532_0
      py-cpuinfo         pkgs/main/win-64::py-cpuinfo-9.0.0-py311haa95532_0
      pyarrow            pkgs/main/win-64::pyarrow-16.1.0-py311hea22821_0
      pydantic-core      pkgs/main/win-64::pydantic-core-2.20.1-py311hefb1915_0
      python-json-logger pkgs/main/win-64::python-json-logger-2.0.7-py311haa95532_0
      re2                pkgs/main/win-64::re2-2022.04.01-hd77b12b_0
      requests-toolbelt  pkgs/main/win-64::requests-toolbelt-1.0.0-py311haa95532_0
      rfc3339-validator  pkgs/main/win-64::rfc3339-validator-0.1.4-py311haa95532_0
      rfc3986-validator  pkgs/main/win-64::rfc3986-validator-0.1.1-py311haa95532_0
      tornado            pkgs/main/win-64::tornado-6.4.1-py311h827c3e9_0
      uc-micro-py        pkgs/main/win-64::uc-micro-py-1.0.1-py311haa95532_0
      utf8proc           pkgs/main/win-64::utf8proc-2.6.1-h2bbff1b_1
      xyzservices        pkgs/main/win-64::xyzservices-2022.9.0-py311haa95532_1
      zlib-ng            pkgs/main/win-64::zlib-ng-2.0.7-h2bbff1b_0
    
    The following packages will be UPDATED:
    
      anaconda-client                    1.11.1-py310haa95532_0 --> 1.12.3-py311haa95532_0
      anyio                               3.5.0-py310haa95532_0 --> 4.6.2-py311haa95532_0
      arrow                               1.2.3-py310haa95532_1 --> 1.3.0-py311haa95532_0
      astropy                               5.1-py310h9128911_0 --> 6.1.3-py311h827c3e9_0
      attrs                              23.1.0-py310haa95532_0 --> 24.2.0-py311haa95532_0
      beautifulsoup4                     4.12.2-py310haa95532_0 --> 4.12.3-py311haa95532_0
      black                              24.3.0-py310haa95532_0 --> 24.8.0-py311haa95532_0
      bokeh                               2.4.3-py310haa95532_0 --> 3.6.0-py311haa95532_0
      ca-certificates                      2024.3.11-haa95532_0 --> 2024.9.24-haa95532_0
      certifi                          2024.2.2-py310haa95532_0 --> 2024.8.30-py311haa95532_0
      cffi                               1.16.0-py310h2bbff1b_1 --> 1.17.1-py311h827c3e9_0
      cloudpickle                         2.2.1-py310haa95532_0 --> 3.0.0-py311haa95532_0
      conda                              24.4.0-py310haa95532_0 --> 24.9.2-py311haa95532_0
      conda-build                        24.3.0-py310haa95532_0 --> 24.9.0-py311haa95532_0
      conda-content-tru~                  0.1.3-py310haa95532_0 --> 0.2.0-py311haa95532_1
      conda-package-han~                  2.2.0-py310haa95532_1 --> 2.3.0-py311haa95532_0
      conda-package-str~                  0.9.0-py310haa95532_0 --> 0.10.0-py311haa95532_0
      conda-repo-cli                     1.0.88-py310haa95532_0 --> 1.0.114-py311haa95532_0
      conda-token                            0.4.0-pyhd3eb1b0_0 --> 0.5.0-pyhd3eb1b0_0
      cryptography                       39.0.1-py310h21b164f_2 --> 43.0.0-py311h89fc84f_0
      dask                             2022.7.0-py310haa95532_0 --> 2024.8.2-py311haa95532_0
      dask-core                        2023.4.1-py310haa95532_0 --> 2024.8.2-py311haa95532_0
      datashader                         0.14.4-py310haa95532_0 --> 0.16.3-py311haa95532_0
      distributed                      2022.7.0-py310haa95532_0 --> 2024.8.2-py311haa95532_0
      flask                               2.2.2-py310haa95532_0 --> 2.2.5-py311haa95532_0
      fontconfig                              2.14.1-hc0defaf_1 --> 2.14.1-h9c4af85_2
      fsspec                           2024.3.1-py310haa95532_0 --> 2024.6.1-py311haa95532_0
      gensim                              4.3.0-py310h4ed8f06_0 --> 4.3.3-py311hea22821_0
      greenlet                            2.0.1-py310hd77b12b_0 --> 3.0.1-py311hd77b12b_0
      holoviews                          1.15.4-py310haa95532_0 --> 1.19.1-py311haa95532_0
      huggingface_hub                    0.20.3-py310haa95532_0 --> 0.24.6-py311haa95532_0
      hvplot                              0.8.2-py310haa95532_0 --> 0.11.0-py311haa95532_0
      imbalanced-learn                   0.10.1-py310haa95532_0 --> 0.12.3-py311haa95532_1
      intake                              0.6.7-py310haa95532_0 --> 2.0.7-py311haa95532_0
      intel-openmp                       2021.4.0-haa95532_3556 --> 2023.1.0-h59b6b97_46320
      ipykernel                          6.28.0-py310haa95532_0 --> 6.29.5-py311haa95532_0
      ipython                            8.20.0-py310haa95532_0 --> 8.27.0-py311haa95532_0
      joblib                              1.4.0-py310haa95532_0 --> 1.4.2-py311haa95532_0
      jsonschema                         4.19.2-py310haa95532_0 --> 4.23.0-py311haa95532_0
      jupyter                             1.0.0-py310haa95532_8 --> 1.0.0-py311haa95532_9
      jupyter_client                      7.4.9-py310haa95532_0 --> 8.6.0-py311haa95532_0
      jupyter_core                        5.5.0-py310haa95532_0 --> 5.7.2-py311haa95532_0
      jupyter_server                     1.23.4-py310haa95532_0 --> 2.14.1-py311haa95532_0
      jupyterlab                          3.5.3-py310haa95532_0 --> 4.2.5-py311haa95532_0
      jupyterlab_server                  2.19.0-py310haa95532_0 --> 2.27.3-py311haa95532_0
      libcurl                                 7.87.0-h86230a5_0 --> 8.9.1-h0416ee5_0
      libssh2                                 1.10.0-hcd4344a_0 --> 1.11.0-h291bd65_0
      llvmlite                           0.42.0-py310hf2fb9eb_0 --> 0.43.0-py311hf2fb9eb_0
      lxml                                4.9.3-py310h09808a7_0 --> 5.2.1-py311h09808a7_0
      matplotlib                          3.7.0-py310haa95532_0 --> 3.9.2-py311haa95532_0
      menuinst                            2.0.2-py310hd77b12b_1 --> 2.1.2-py311h5da7b33_0
      mkl                                 2021.4.0-haa95532_640 --> 2023.1.0-h6b88ed4_46358
      mkl-service                         2.4.0-py310h2bbff1b_0 --> 2.4.0-py311h2bbff1b_1
      mkl_fft                             1.3.1-py310ha0764ea_0 --> 1.3.10-py311h827c3e9_0
      mkl_random                          1.2.2-py310h4ed8f06_0 --> 1.2.7-py311hea22821_0
      more-itertools                     10.1.0-py310haa95532_0 --> 10.3.0-py311haa95532_0
      mpmath                              1.2.1-py310haa95532_0 --> 1.3.0-py311haa95532_0
      navigator-updater                   0.5.0-py310haa95532_0 --> 0.5.1-py311haa95532_0
      nbclassic                           0.5.2-py310haa95532_0 --> 1.1.0-py311haa95532_0
      nbconvert                          7.10.0-py310haa95532_0 --> 7.16.4-py311haa95532_0
      nbformat                            5.9.2-py310haa95532_0 --> 5.10.4-py311haa95532_0
      networkx                              3.1-py310haa95532_0 --> 3.3-py311haa95532_0
      notebook                            6.5.2-py310haa95532_0 --> 7.2.2-py311haa95532_1
      notebook-shim                       0.2.2-py310haa95532_0 --> 0.2.3-py311haa95532_0
      numba                              0.59.1-py310hd77b12b_0 --> 0.60.0-py311hea22821_0
      numexpr                             2.8.4-py310hd213c9f_0 --> 2.8.7-py311h1fcbade_0
      numpy                              1.24.3-py310hdc03b94_0 --> 1.26.4-py311hdab7c0b_0
      openssl                                 3.0.13-h2bbff1b_2 --> 3.0.15-h827c3e9_0
      packaging                            23.2-py310haa95532_0 --> 24.1-py311haa95532_0
      pandas                              2.2.1-py310h5da7b33_0 --> 2.2.2-py311hea22821_0
      panel                              0.14.3-py310haa95532_0 --> 1.5.2-py311haa95532_0
      param                              1.13.0-py310haa95532_0 --> 2.1.1-py311haa95532_0
      patsy                               0.5.3-py310haa95532_0 --> 0.5.6-py311haa95532_0
      pip                                23.3.1-py310haa95532_0 --> 24.2-py311haa95532_0
      pycurl                             7.45.1-py310hcd4344a_0 --> 7.45.3-py311h3f729d1_0
      pydantic                          1.10.12-py310h2bbff1b_1 --> 2.8.2-py311haa95532_0
      pyerfa                              2.0.0-py310h2bbff1b_0 --> 2.0.1.4-py311h57dcf0c_0
      pyodbc                             4.0.34-py310hd77b12b_0 --> 5.1.0-py311h5da7b33_0
      pyopenssl                          23.2.0-py310haa95532_0 --> 24.2.1-py311haa95532_0
      pyparsing                           3.0.9-py310haa95532_0 --> 3.1.2-py311haa95532_0
      pyrsistent                         0.18.0-py310h2bbff1b_0 --> 0.20.0-py311h2bbff1b_0
      pytables                            3.7.0-py310h388bc9b_1 --> 3.8.0-py311ha4dc190_2
      pytest                              7.1.2-py310haa95532_0 --> 7.4.4-py311haa95532_0
      python                                 3.10.14-he1021f5_0 --> 3.11.10-h4607a30_0
      python-lsp-black                    1.2.1-py310haa95532_0 --> 2.0.0-py311haa95532_0
      python-lsp-server                   1.7.1-py310haa95532_0 --> 1.7.2-py311haa95532_0
      pytorch                        1.12.1-cpu_py310h5e1f01c_1 --> 2.3.0-cpu_py311he6429e2_1
      pyviz_comms                         2.3.0-py310haa95532_0 --> 3.0.2-py311haa95532_0
      pywavelets                          1.5.0-py310h9128911_0 --> 1.7.0-py311h827c3e9_0
      pyyaml                              6.0.1-py310h2bbff1b_0 --> 6.0.2-py311h827c3e9_0
      pyzmq                              24.0.1-py310h2bbff1b_0 --> 25.1.2-py311hd77b12b_0
      qtawesome                           1.2.2-py310haa95532_0 --> 1.3.1-py311haa95532_0
      qtwebkit                                 5.212-h3ad3cdb_4 --> 5.212-h2bbfb41_5
      regex                           2023.10.3-py310h2bbff1b_0 --> 2024.9.11-py311h827c3e9_0
      requests                           2.32.2-py310haa95532_0 --> 2.32.3-py311haa95532_0
      rich                               13.3.5-py310haa95532_0 --> 13.7.1-py311haa95532_0
      ruamel.yaml                       0.17.21-py310h2bbff1b_0 --> 0.18.6-py311h827c3e9_0
      ruamel.yaml.clib                    0.2.6-py310h2bbff1b_1 --> 0.2.8-py311h827c3e9_0
      safetensors                         0.4.2-py310h0010962_0 --> 0.4.4-py311h3ef4675_0
      scikit-image                       0.19.3-py310hd77b12b_1 --> 0.24.0-py311hea22821_0
      scikit-learn                        1.2.1-py310hd77b12b_0 --> 1.4.2-py311hf62ec03_1
      scipy                              1.10.1-py310hb9afe5d_0 --> 1.13.1-py311h9f229c6_0
      scrapy                              2.8.0-py310haa95532_0 --> 2.11.1-py311haa95532_0
      setuptools                         65.6.3-py310haa95532_0 --> 75.1.0-py311haa95532_0
      spyder                              5.4.1-py310haa95532_0 --> 5.4.3-py311haa95532_1
      sqlalchemy                         1.4.39-py310h2bbff1b_0 --> 2.0.34-py311h54f65d0_0
      statsmodels                        0.13.5-py310h9128911_1 --> 0.14.2-py311h57dcf0c_0
      sympy                              1.11.1-py310haa95532_0 --> 1.13.2-py311haa95532_0
      tabulate                           0.8.10-py310haa95532_0 --> 0.9.0-py311haa95532_0
      tbb4py                           2021.7.0-py310h59b6b97_0 --> 2021.8.0-py311h59b6b97_0
      tomlkit                            0.11.1-py310haa95532_0 --> 0.13.2-py311haa95532_0
      tqdm                               4.66.4-py310h9909e9c_0 --> 4.66.5-py311h746a85d_0
      traitlets                           5.7.1-py310haa95532_0 --> 5.14.3-py311haa95532_0
      transformers                       4.24.0-py310haa95532_0 --> 4.37.2-py311haa95532_1
      twisted                            22.2.0-py310h2bbff1b_1 --> 23.10.0-py311haa95532_0
      typing-extensions                   4.4.0-py310haa95532_0 --> 4.11.0-py311haa95532_0
      typing_extensions                   4.4.0-py310haa95532_0 --> 4.11.0-py311haa95532_0
      ujson                               5.4.0-py310hd77b12b_0 --> 5.10.0-py311h5da7b33_0
      urllib3                           1.26.18-py310haa95532_0 --> 2.2.3-py311haa95532_0
      werkzeug                            2.2.3-py310haa95532_0 --> 3.0.3-py311haa95532_0
      wheel                              0.38.4-py310haa95532_0 --> 0.44.0-py311haa95532_0
      widgetsnbextension                  3.5.2-py310haa95532_0 --> 3.5.2-py311haa95532_1
      xarray                          2022.11.0-py310haa95532_0 --> 2023.6.0-py311haa95532_0
      xlwings                            0.29.1-py310haa95532_0 --> 0.32.1-py311haa95532_0
      zipp                               3.17.0-py310haa95532_0 --> 3.20.2-py311haa95532_0
    
    The following packages will be SUPERSEDED by a higher-priority channel:
    
      curl                    pkgs/main::curl-7.87.0-h2bbff1b_0 --> anaconda/pkgs/free::curl-7.43.0-1
      jupyterlab_pygmen~ pkgs/main/win-64::jupyterlab_pygments~ --> pkgs/main/noarch::jupyterlab_pygments-0.1.2-py_0
    
    The following packages will be DOWNGRADED:
    
      anaconda-anon-usa~                0.4.4-py310hfc23b7f_100 --> 0.4.4-py311hfc23b7f_100
      anaconda-cloud-au~                  0.5.1-py310haa95532_0 --> 0.5.1-py311haa95532_0
      anaconda-navigator                  2.5.0-py310haa95532_0 --> 2.5.0-py311haa95532_0
      anaconda-project                   0.11.1-py310haa95532_0 --> 0.11.1-py311haa95532_0
      argon2-cffi-bindi~                 21.2.0-py310h2bbff1b_0 --> 21.2.0-py311h2bbff1b_0
      astroid                            2.14.2-py310haa95532_0 --> 2.14.2-py311haa95532_0
      babel                              2.11.0-py310haa95532_0 --> 2.11.0-py311haa95532_0
      bcrypt                              3.2.0-py310h2bbff1b_1 --> 3.2.0-py311h2bbff1b_1
      boltons                            23.0.0-py310haa95532_0 --> 23.0.0-py311haa95532_0
      bottleneck                          1.3.7-py310h9128911_0 --> 1.3.7-py311hd7041d2_0
      brotli-python                       1.0.9-py310hd77b12b_8 --> 1.0.9-py311hd77b12b_8
      brotlipy                         0.7.0-py310h2bbff1b_1002 --> 0.7.0-py311h2bbff1b_1002
      chardet                          4.0.0-py310haa95532_1003 --> 4.0.0-py311haa95532_1003
      click                               8.1.7-py310haa95532_0 --> 8.1.7-py311haa95532_0
      clyent                              1.2.2-py310haa95532_1 --> 1.2.2-py311haa95532_1
      colorama                            0.4.6-py310haa95532_0 --> 0.4.6-py311haa95532_0
      colorcet                            3.1.0-py310haa95532_0 --> 3.1.0-py311haa95532_0
      comm                                0.2.1-py310haa95532_0 --> 0.2.1-py311haa95532_0
      constantly                        23.10.4-py310haa95532_0 --> 23.10.4-py311haa95532_0
      contourpy                           1.2.0-py310h59b6b97_0 --> 1.2.0-py311h59b6b97_0
      cookiecutter                        2.6.0-py310haa95532_0 --> 2.6.0-py311haa95532_0
      cssselect                           1.2.0-py310haa95532_0 --> 1.2.0-py311haa95532_0
      cytoolz                            0.12.2-py310h2bbff1b_0 --> 0.12.2-py311h2bbff1b_0
      daal4py                          2023.0.2-py310hf497b98_0 --> 2023.0.2-py311h45a1f87_0
      datashape                           0.5.4-py310haa95532_1 --> 0.5.4-py311haa95532_1
      debugpy                             1.6.7-py310hd77b12b_0 --> 1.6.7-py311hd77b12b_0
      dill                                0.3.8-py310haa95532_0 --> 0.3.8-py311haa95532_0
      distro                              1.9.0-py310haa95532_0 --> 1.9.0-py311haa95532_0
      docstring-to-mark~                   0.11-py310haa95532_0 --> 0.11-py311haa95532_0
      docutils                           0.18.1-py310haa95532_3 --> 0.18.1-py311haa95532_3
      entrypoints                           0.4-py310haa95532_0 --> 0.4-py311haa95532_0
      et_xmlfile                          1.1.0-py310haa95532_0 --> 1.1.0-py311haa95532_0
      exceptiongroup                      1.2.0-py310haa95532_0 --> 1.2.0-py311haa95532_0
      filelock                           3.13.1-py310haa95532_0 --> 3.13.1-py311haa95532_0
      flake8                              6.0.0-py310haa95532_0 --> 6.0.0-py311haa95532_0
      flit-core                           3.9.0-py310he100be2_1 --> 3.9.0-py311he100be2_1
      fonttools                          4.51.0-py310h2bbff1b_0 --> 4.51.0-py311h2bbff1b_0
      future                             0.18.3-py310haa95532_0 --> 0.18.3-py311haa95532_0
      h5py                                3.7.0-py310hfc34f40_0 --> 3.7.0-py311h259cc0e_0
      idna                                  3.7-py310haa95532_0 --> 3.7-py311haa95532_0
      imagecodecs                     2023.1.23-py310h6c6a46e_0 --> 2023.1.23-py311he6ff3c7_0
      imageio                            2.33.1-py310haa95532_0 --> 2.33.1-py311haa95532_0
      imagesize                           1.4.1-py310haa95532_0 --> 1.4.1-py311haa95532_0
      importlib-metadata                  7.0.1-py310haa95532_0 --> 7.0.1-py311haa95532_0
      inflection                          0.5.1-py310haa95532_0 --> 0.5.1-py311haa95532_0
      itemloaders                         1.1.0-py310haa95532_0 --> 1.1.0-py311haa95532_0
      jedi                               0.18.1-py310haa95532_1 --> 0.18.1-py311haa95532_1
      jellyfish                           1.0.1-py310h36a85e1_0 --> 1.0.1-py311h36a85e1_0
      jinja2                              3.1.4-py310haa95532_0 --> 3.1.4-py311haa95532_0
      jsonpatch                            1.33-py310haa95532_1 --> 1.33-py311haa95532_1
      jsonschema-specif~               2023.7.1-py310haa95532_0 --> 2023.7.1-py311haa95532_0
      jupyter_console                     6.6.3-py310haa95532_0 --> 6.6.3-py311haa95532_0
      jupyterlab_widgets                 3.0.10-py310haa95532_0 --> 3.0.10-py311haa95532_0
      keyring                            24.3.1-py310haa95532_0 --> 24.3.1-py311haa95532_0
      kiwisolver                          1.4.4-py310hd77b12b_0 --> 1.4.4-py311hd77b12b_0
      lazy-object-proxy                  1.10.0-py310h2bbff1b_0 --> 1.10.0-py311h2bbff1b_0
      libmambapy                          1.5.8-py310h77c03ed_2 --> 1.5.8-py311h77c03ed_2
      libpq                                    12.17-h906ac69_0 --> 12.15-h906ac69_0
      locket                              1.0.0-py310haa95532_0 --> 1.0.0-py311haa95532_0
      lz4                                 4.3.2-py310h2bbff1b_0 --> 4.3.2-py311h2bbff1b_0
      markdown                            3.4.1-py310haa95532_0 --> 3.4.1-py311haa95532_0
      markdown-it-py                      2.2.0-py310haa95532_1 --> 2.2.0-py311haa95532_1
      markupsafe                          2.1.3-py310h2bbff1b_0 --> 2.1.3-py311h2bbff1b_0
      mdurl                               0.1.0-py310haa95532_0 --> 0.1.0-py311haa95532_0
      mistune                             2.0.4-py310haa95532_0 --> 2.0.4-py311haa95532_0
      msgpack-python                      1.0.3-py310h59b6b97_0 --> 1.0.3-py311h59b6b97_0
      multipledispatch                    0.6.0-py310haa95532_0 --> 0.6.0-py311haa95532_0
      mypy_extensions                     1.0.0-py310haa95532_0 --> 1.0.0-py311haa95532_0
      nbclient                            0.8.0-py310haa95532_0 --> 0.8.0-py311haa95532_0
      nest-asyncio                        1.6.0-py310haa95532_0 --> 1.6.0-py311haa95532_0
      numpydoc                            1.5.0-py310haa95532_0 --> 1.5.0-py311haa95532_0
      parsel                              1.8.1-py310haa95532_0 --> 1.8.1-py311haa95532_0
      partd                               1.4.1-py310haa95532_0 --> 1.4.1-py311haa95532_0
      pathspec                           0.10.3-py310haa95532_0 --> 0.10.3-py311haa95532_0
      pep8                                1.7.1-py310haa95532_1 --> 1.7.1-py311haa95532_1
      pillow                              9.4.0-py310hd77b12b_0 --> 9.4.0-py311hd77b12b_0
      pkce                                1.0.3-py310haa95532_0 --> 1.0.3-py311haa95532_0
      pkginfo                            1.10.0-py310haa95532_0 --> 1.10.0-py311haa95532_0
      platformdirs                       3.10.0-py310haa95532_0 --> 3.10.0-py311haa95532_0
      pluggy                              1.0.0-py310haa95532_1 --> 1.0.0-py311haa95532_1
      ply                                  3.11-py310haa95532_0 --> 3.11-py311haa95532_0
      pooch                               1.7.0-py310haa95532_0 --> 1.7.0-py311haa95532_0
      prometheus_client                  0.14.1-py310haa95532_0 --> 0.14.1-py311haa95532_0
      prompt-toolkit                     3.0.43-py310haa95532_0 --> 3.0.43-py311haa95532_0
      psutil                              5.9.0-py310h2bbff1b_0 --> 5.9.0-py311h2bbff1b_0
      py-lief                            0.12.3-py310hd77b12b_0 --> 0.12.3-py311hd77b12b_0
      pycodestyle                        2.10.0-py310haa95532_0 --> 2.10.0-py311haa95532_0
      pycosat                             0.6.6-py310h2bbff1b_1 --> 0.6.6-py311h2bbff1b_1
      pyct                                0.5.0-py310haa95532_0 --> 0.5.0-py311haa95532_0
      pydispatcher                        2.0.5-py310haa95532_2 --> 2.0.5-py311haa95532_2
      pydocstyle                          6.3.0-py310haa95532_0 --> 6.3.0-py311haa95532_0
      pyflakes                            3.0.1-py310haa95532_0 --> 3.0.1-py311haa95532_0
      pygments                           2.15.1-py310haa95532_1 --> 2.15.1-py311haa95532_1
      pyjwt                               2.8.0-py310haa95532_0 --> 2.8.0-py311haa95532_0
      pylint                             2.16.2-py310haa95532_0 --> 2.16.2-py311haa95532_0
      pylint-venv                         3.0.3-py310haa95532_0 --> 3.0.3-py311haa95532_0
      pynacl                              1.5.0-py310h8cc25b3_0 --> 1.5.0-py311h8cc25b3_0
      pyqt                              5.15.10-py310hd77b12b_0 --> 5.15.10-py311hd77b12b_0
      pyqt5-sip                         12.13.0-py310h2bbff1b_0 --> 12.13.0-py311h2bbff1b_0
      pyqtwebengine                     5.15.10-py310hd77b12b_0 --> 5.15.10-py311hd77b12b_0
      pysocks                             1.7.1-py310haa95532_0 --> 1.7.1-py311haa95532_0
      python-dateutil                2.9.0post0-py310haa95532_2 --> 2.9.0post0-py311haa95532_2
      python-dotenv                      0.21.0-py310haa95532_0 --> 0.21.0-py311haa95532_0
      python-fastjsonsc~                 2.16.2-py310haa95532_0 --> 2.16.2-py311haa95532_0
      python-graphviz                    0.20.1-py310haa95532_0 --> 0.20.1-py311haa95532_0
      python-lmdb                         1.4.1-py310hd77b12b_0 --> 1.4.1-py311hd77b12b_0
      python-snappy                       0.6.1-py310hd77b12b_0 --> 0.6.1-py311hd77b12b_0
      pytoolconfig                        1.2.6-py310haa95532_0 --> 1.2.6-py311haa95532_0
      pytz                               2024.1-py310haa95532_0 --> 2024.1-py311haa95532_0
      pywin32                               305-py310h2bbff1b_0 --> 305-py311h2bbff1b_0
      pywin32-ctypes                      0.2.2-py310haa95532_0 --> 0.2.2-py311haa95532_0
      pywinpty                           2.0.10-py310h5da7b33_0 --> 2.0.10-py311h5da7b33_0
      qstylizer                           0.2.2-py310haa95532_0 --> 0.2.2-py311haa95532_0
      qtconsole                           5.4.2-py310haa95532_0 --> 5.4.2-py311haa95532_0
      qtpy                                2.4.1-py310haa95532_0 --> 2.4.1-py311haa95532_0
      queuelib                            1.6.2-py310haa95532_0 --> 1.6.2-py311haa95532_0
      referencing                        0.30.2-py310haa95532_0 --> 0.30.2-py311haa95532_0
      rope                               1.12.0-py310haa95532_0 --> 1.12.0-py311haa95532_0
      rpds-py                            0.10.6-py310h062c2fa_0 --> 0.10.6-py311h062c2fa_0
      rtree                               1.0.1-py310h2eaa2aa_0 --> 1.0.1-py311h2eaa2aa_0
      ruamel_yaml                       0.17.21-py310h2bbff1b_0 --> 0.17.21-py311h2bbff1b_0
      scikit-learn-inte~               2023.0.2-py310haa95532_0 --> 2023.0.2-py311haa95532_0
      semver                              3.0.2-py310haa95532_0 --> 3.0.2-py311haa95532_0
      send2trash                          1.8.2-py310haa95532_0 --> 1.8.2-py311haa95532_0
      sip                                6.7.12-py310hd77b12b_0 --> 6.7.12-py311hd77b12b_0
      smart_open                          5.2.1-py310haa95532_0 --> 5.2.1-py311haa95532_0
      sniffio                             1.3.0-py310haa95532_0 --> 1.3.0-py311haa95532_0
      soupsieve                             2.5-py310haa95532_0 --> 2.5-py311haa95532_0
      sphinx                              5.0.2-py310haa95532_0 --> 5.0.2-py311haa95532_0
      spyder-kernels                      2.4.4-py310haa95532_0 --> 2.4.4-py311haa95532_0
      terminado                          0.17.1-py310haa95532_0 --> 0.17.1-py311haa95532_0
      tifffile                        2023.4.12-py310haa95532_0 --> 2023.4.12-py311haa95532_0
      tinycss2                            1.2.1-py310haa95532_0 --> 1.2.1-py311haa95532_0
      tokenizers                         0.15.1-py310h49fca51_0 --> 0.15.1-py311h49fca51_0
      tomli                               2.0.1-py310haa95532_0 --> 2.0.1-py311haa95532_0
      toolz                              0.12.0-py310haa95532_0 --> 0.12.0-py311haa95532_0
      truststore                          0.8.0-py310haa95532_0 --> 0.8.0-py311haa95532_0
      twisted-iocpsuppo~                  1.0.2-py310h2bbff1b_0 --> 1.0.2-py311h2bbff1b_0
      unicodedata2                       15.1.0-py310h2bbff1b_0 --> 15.1.0-py311h2bbff1b_0
      w3lib                               2.1.2-py310haa95532_0 --> 2.1.2-py311haa95532_0
      watchdog                            4.0.1-py310haa95532_0 --> 4.0.1-py311haa95532_0
      webencodings                        0.5.1-py310haa95532_1 --> 0.5.1-py311haa95532_1
      websocket-client                    1.8.0-py310haa95532_0 --> 1.8.0-py311haa95532_0
      whatthepatch                        1.0.2-py310haa95532_0 --> 1.0.2-py311haa95532_0
      win_inet_pton                       1.1.0-py310haa95532_0 --> 1.1.0-py311haa95532_0
      wincertstore                          0.2-py310haa95532_2 --> 0.2-py311haa95532_0
      wrapt                              1.14.1-py310h2bbff1b_0 --> 1.14.1-py311h2bbff1b_0
      zict                                3.0.0-py310haa95532_0 --> 3.0.0-py311haa95532_0
      zope                                  1.0-py310haa95532_1 --> 1.0-py311haa95532_1
      zope.interface                      5.4.0-py310h2bbff1b_0 --> 5.4.0-py311h2bbff1b_0
      zstandard                          0.22.0-py310h3469f8a_0 --> 0.22.0-py311h3469f8a_0
      Proceed ([y]/n)?
      
      
    
    (base) C:\Users\Administrator>python
    Python 3.11.10 | packaged by Anaconda, Inc. | (main, Oct  3 2024, 07:22:26) [MSC v.1929 64 bit (AMD64)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> exit()
    
    (base) C:\Users\Administrator>
    

    总结

    升级很简单,就是过程很耗时,毕竟需要下载很多包。但还好,一条命令运行后,输入Y确认后就不用管了。

    好在运行效率确实有提升,一切都值了。

    这个方法同样适合虚拟环境。只是需要先切换到对应环境。

    前方高能

    升级虽然很简单,不过很多以前写过的代码,需要修正!不然,各种FutureWarning!

    作者:IT里的交易员

    物联沃分享整理
    物联沃-IOTWORD物联网 » 【Python小技巧】一行conda命令升级Anaconda中python到指定版本

    发表回复