I'm trying to uninstall numpy & then install a specific version of it on anaconda. However, the prompt also told that others packages will also uninstall itself. How do I uninstall only numpy packages? I'm using ubuntu 18.04.
Asked
Active
Viewed 1.3k times
0
-
How did you install numpy? The command `conda remove --force numpy` will remove numpy and only numpy from the current environment. See: https://conda.io/docs/commands/conda-remove.html – darthbith Dec 13 '18 at 15:05
-
Possible duplicate of [Conda uninstall one package and one package only](https://stackoverflow.com/questions/38459186/conda-uninstall-one-package-and-one-package-only) – uhoh May 02 '19 at 01:51
1 Answers
1
If you anaconda contain pip
tool, you can uninstall numpy only through pip uninstall numpy

Hailin FU
- 492
- 4
- 14