Python Pandas - Missing required dependencies ['numpy'] 1

前端 未结 28 2522
清歌不尽
清歌不尽 2020-11-27 16:32

Since yesterday I\'ve had this error when I try to import packages on anaconda :

ImportError: Missing required dependencies [\'numpy\']

I have t

28条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-27 17:00

    Uninstall all pip packages that you're having problems with. Manually remove all site-packages files. If you're using MacPorts, sudo port clean .

    Then try reinstalling. Sometimes, there are files that should have been removed, but weren't if the installation was abruptly interrupted or something.

    There could be an issue with conflicting versions of the package(s), as well as potentially issues with Pathing. Are you sure you've set the correct Path for your binaries? (/opt/local/bin, /anaconda2/bin, etc.)

    Another issue could be some PYTHONPATH that's explicitly looking in the wrong place for the file.

提交回复
热议问题