Baran Aldemir
Baran Aldemir

Reputation: 71

How to uninstall nodejs with conda or pip?

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. enter image description here

Upvotes: 1

Views: 3173

Answers (1)

merv
merv

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

Related Questions