Uninstallation issues in python numpy

23,351

try this if you are using anaconda:

conda uninstall numpy
conda install numpy=1.7

or this if you are using python pip:

pip uninstall numpy
pip install numpy==1.7
Share:
23,351

Related videos on Youtube

Doubt Dhanabalu
Author by

Doubt Dhanabalu

Updated on July 09, 2022

Comments

  • Doubt Dhanabalu
    Doubt Dhanabalu almost 2 years

    I am in the process of downgrading numpy1.13 to 1.7. In order to do this, I am uninstalling the latest version so that i can install with a older version,

    I have uninstalled numpy in anaconda python using

    `pip uninstall numpy`
    

    After uninstalling, when i see the conda list, numpy is still listed in the library list.

    When i tried again with pip uninstall numpy, its throwing me an errors as "cannot uninstall requirement numpy, not installed".`

    Any help on this is much appreciated.

    Thank you .

    • Peter Majko
      Peter Majko over 6 years
      Anaconda is using it's own virtual environment I think. Try outside anaconda.
    • chickity china chinese chicken
      chickity china chinese chicken over 6 years
      try python -m numpy should give you python: No module named numpy