I want to uninstall numpy in Python 3.8. I tried to that command "pip3 uninstall numpy",but this didn't work. I modified the PYTHONPATH in my ~/.bashrc file and exported PYTHONPATH, but when I again install the nump, "Requirement already satisfied: numpy in/usr/lib/python3/dist-packages(1.17.4)" output in console.
type here
~$ pip3 uninstall numpy
Found existing installation: numpy 1.24.1
Uninstalling numpy-1.24.1:
Would remove:
/home/efsun/.local/bin/f2py
/home/efsun/.local/bin/f2py3
/home/efsun/.local/bin/f2py3.8
/home/efsun/.local/lib/python3.8/site-packages/numpy-1.24.1.dist-info/*
/home/efsun/.local/lib/python3.8/site-packages/numpy.libs/libgfortran-040039e1.so.5.0.0
/home/efsun/.local/lib/python3.8/site-packages/numpy.libs/libopenblas64_p-r0-15028c96.3.21.so
/home/efsun/.local/lib/python3.8/site-packages/numpy.libs/libquadmath-96973f99.so.0.0.0
/home/efsun/.local/lib/python3.8/site-packages/numpy/*
Proceed (y/n)? y
Successfully uninstalled numpy-1.24.1
~$ pip install numpy
Requirement already satisfied: numpy in /usr/lib/python3/dist-packages (1.17.4)
~$ nano ~/.bashrc
~$ PYTHONPATH
PYTHONPATH: command not found
~$ nano ~/.bashrc
~$ pip install numpy
Requirement already satisfied: numpy in /usr/lib/python3/dist-packages (1.17.4)
~$ nano ~/.bashrc
~$ source ~/.bashrc
~$ pip install numpy
Requirement already satisfied: numpy in /usr/lib/python3/dist-packages (1.17.4)
~$ nano ~/.bashrc
~$ source ~/.bashrc
~$ pip install numpy
Requirement already satisfied: numpy in /usr/lib/python3/dist-packages (1.17.4)