Python- peakutils的导入错误

时间:2017-03-28 05:35:42

标签: python anaconda importerror pythonpath peakutils

我正在尝试使用peakutils库并使用

安装它
pip install peakutils

但是当我尝试在我的jupyter笔记本中导入相同内容时,它会显示导入错误 在此之前,我从未遇到过这样的问题。 我没有设置PYTHONPATH。

此外,在this中,第二个答案要求通过

取消设置python路径
unset PYTHONPATH

显示

'unset' is not recognised as an internal or external command, operable program or batch file.

我已检查过该软件包是否安装在我正在使用的环境中:

(C:\Users\DELL\Anaconda3) C:\Users\DELL>activate DAND

(DAND) C:\Users\DELL>pip install peakutils
Requirement already satisfied: peakutils in c:\users\dell\anaconda3\envs\dand\li
b\site-packages
Requirement already satisfied: scipy in c:\users\dell\anaconda3\envs\dand\lib\si
te-packages (from peakutils)
Requirement already satisfied: numpy in c:\users\dell\anaconda3\envs\dand\lib\si
te-packages (from peakutils)

2 个答案:

答案 0 :(得分:0)

我浏览了目录

c:\users\dell\anaconda3\envs\dand\lib\site-packages\peakutils

然后我没有找到任何setup.py,所以我继续查看源代码here 并注意到我只有文件夹peakutils,需要setup.py以及manifest和readmd.rst。我只是下载了文件并将其包含在 site-packages 文件夹中,然后运行

python setup.py install

在c:\ users \ dell \ anaconda3 \ envs \ dand \ lib \ site-packages \ 目录 然后就解决了

答案 1 :(得分:0)

我遇到了尝试通过Jupyter终端安装库的问题,但是当我回到笔记本电脑尝试“导入peakutils”时,它仍然无法正常工作。因此,我尝试了这种三步法,并且效果很好。

!pip install PeakUtils
!pip install msgpack
!pip install --upgrade pip