Невозможно удалить Numpy из-за проблемы в пипсах - PullRequest
0 голосов
/ 23 марта 2020

Я пытаюсь удалить Numpy на машине Raspberry Pi 4 (Rasbian), но не могу понять. Я получил ошибку «Отказано в доступе» при выводе:

pip uninstall numpy

Я пытался с привилегией root, но получил ошибку pip: command not found.

Как очень часто Кажется, проблема связана с установкой pip, поэтому я попытался переустановить ее. Сначала, когда я проверяю версию pip с помощью pip -V, я получаю:

pip 20.0.2 from /home/pi/.local/lib/python3.7/site-packages/pip (python 3.7)

Так что я думаю, что pip устанавливается локально для пользователя, но не для root. Я удалил все, используя apt:

sudo apt remove python-pip python3-pip python-numpy python3-numpy

Но пип не удаляется, когда я выдаю pip -V У меня все еще есть версия и местоположение пипса на консоли.

Любая идея, где искать для отладки этого?

PS: в .bashr c нет ничего особенного, просто export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH.

PPS: Python и Python "находятся в / usr / bin /

PPPS: я пытаюсь удалить Numpy, потому что при импорте я получаю следующую ошибку:

ImportError: 

IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!

Importing the numpy c-extensions failed.
- Try uninstalling and reinstalling numpy.
- If you have already done that, then:
  1. Check that you expected to use Python3.7 from "/usr/bin/python3",
     and that you have no directories in your PATH or PYTHONPATH that can
     interfere with the Python and numpy version "1.18.2" you're trying to use.
  2. If (1) looks fine, you can open a new issue at
     https://github.com/numpy/numpy/issues.  Please include details on:
     - how you installed Python
     - how you installed numpy
     - your operating system
     - whether or not you have multiple versions of Python installed
     - if you built from source, your compiler versions and ideally a build log

- If you're working with a numpy git repository, try `git clean -xdf`
  (removes all files not under version control) and rebuild numpy.

Note: this error has many possible causes, so please don't comment on
an existing issue about this - open a new one instead.

Original error was: libf77blas.so.3: cannot open shared object file: No such file or directory
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...