Reputation: 71
I tried conda remove nodejs
and pip uninstall nodejs
but it doesn't work. I get this error message PackagesNotFoundError: The following packages are missing from the target environment: - nodejs
but when I use conda search nodejs. It turns out the package still exists.
Upvotes: 1
Views: 3173
Reputation: 76750
The conda search
command does not give information about local installations, but instead queries Anaconda Cloud to see what packages are available to install.
To check what is installed, use the conda list
command. If you wish to check every environment for a given package, see Conda: list all environments that use a certain package.
Upvotes: 1