Miniconda installation and usage problem records (continuous updates)

1. Installation tutorial

Reference: Installation and use of Miniconda3 in Linux environment_miniconda3 linux-CSDN blog

2. Summary of issues

1. Installing dependencies requires version updates:

Please update conda by running

    $ conda update -n base -c defaults conda

Or to minimize the number of packages updated during conda update use

==> WARNING: A newer version of conda exists. <==
  current version: 23.5.2
  latest version: 23.9.0

Please update conda by running

    $ conda update -n base -c defaults conda

Or to minimize the number of packages updated during conda update use

     conda install conda=23.9.0

The warning message received is because a newer version of Conda is available. To update Conda to the latest version, run the following command:
conda update -n base -c defaults conda
This command will update Conda to the latest version, fetching updates from the default channel. 
If you want to update Conda to a specific version (such as 23.9.0), you can use the following command: 
conda install conda=23.9.0 
Please make sure that the version number entered is the latest version available. Also, before performing an update, make sure the updated version is compatible with your existing workflows.

2. Install dilb package tutorial

(Under Linux) Painless installation of dlib_dlib linux_Wiliam zhang's blog-CSDN blog

Guess you like

Origin blog.csdn.net/m0_64580886/article/details/133528609