With Anaconda Navigator, you can build and manage virtual environments, and install and manage external libraries. I can manage the entire development environment including Jupyter Notebook, but the command conda is used to install the library.
On the other hand, Python has a command called pip that manages external libraries. If you start the terminal from any virtual environment with Anaconda Navigator, you can install it by entering the pip command. However, libraries installed with pip are not managed by Anaconda's conda because they must be managed by pip.
In some cases, conda and pip will install the same library and conflict.
Therefore, when using Anaconda Navigator, let's use the conda command instead of the pip command.