Python- peakutils的导入错误

问题描述 投票:0回答:2

我正在尝试使用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)
python anaconda importerror pythonpath peakutils
2个回答
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 \目录中,然后就解决了


0
投票

我遇到了问题,我试图通过Jupyter终端安装库,但当我回到我的笔记本试图'导入peakutils'时,它仍然无法正常工作。所以,我试过这个三步法,效果很好。

!pip install PeakUtils
!pip install msgpack
!pip install --upgrade pip
© www.soinside.com 2019 - 2024. All rights reserved.