[Signal]python小波变换包pywt安装雷区
pywt是用于小波变换的python包包地址:https://github.com/PyWavelets/pywt雷区:使用pip安装时,必须使用大写pip install PyWavelets提示缺少模块No module named '_ctypes'此时安装libffi-devel ,重新编译python3yum install libffi-devel -ymakemake install
·
pywt是用于小波变换的python包
雷区:
使用pip安装时,必须使用大写
pip install PyWavelets
提示缺少模块
No module named '_ctypes'
python版本问题,检查python版本。若刚升级,则此时安装libffi-devel ,重新编译python3
yum install libffi-devel -y
make
make install
提示缺少模块
module 'pywt' has no attribute 'wavelet'
pywt与PyWavelets 并非一个包
pip uninstall pywt
pip install PyWavelets
更多推荐
所有评论(0)