problem in installing library in sagemaker studio notebook

0

I have a problem while installing librosa this error message comes:

OSError: cannot load library 'libsndfile.so': libsndfile.so: cannot open shared object file: No such file or directory

I tried many solutions and didn't work, please help

질문됨 일 년 전271회 조회
1개 답변
0

Hello, I had this error when I was trying to install the library ffmpeg, This is the process I followed:

On notebook terminal run the following commands:

$ sudo yum install -y gcc
$ wget https://github.com/libsndfile/libsndfile/releases/download/1.0.31/libsndfile-1.0.31.tar.bz2 
$ tar -xf libsndfile-1.0.31.tar.bz2
$ cd libsndfile-1.0.31
$ ./configure —prefix=/usr \
    --disable-static \
    --docdir=/usr/share/doc/libsndfile-1.0.31 && make
$ sudo make install
$ pip install sndfile

Then go ahead and install librosa but However you may want to setup a new environment with the librosa package preinstalled to it.

$ conda create --no-default-packages -n name_of_env python librosa
$ python -m ipykernel install --user --name=name_of_env

Once completed you may create a new notebook and use this new environment.

AWS
지원 엔지니어
답변함 일 년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠