amazon web services - analysing data using R, AWS lambda and python -
i trying replicate post created amazon web services in using r , aws lambda link. corresponding github link @ link. whilst running following commands
cp /usr/lib64/libblas.so.3 $home/lambda/lib/ cp /usr/lib64/liblapack.so.3 $home/lambda/lib/ i got following errors correspondingly.
cp: cannot stat '/usr/lib64/libblas.so.3': no such file or directory cp: cannot stat '/usr/lib64/liblapack.so.3': no such file or directory however, managed circumvent installing blas , lapack libraries
sudo yum -y install blas sudo yum -y install lapack however, on running aws lambda function - i'm getting following module initialisation error
module initialization error: lib/librrefblas.so: undefined symbol: xerbla_
can this? thanks. there's issue raised in last 2 days respect this.
update: found blog explains process of running r on aws lambda link. up-to-date. author notes - it's befuddling manual loading of libraries cause xerbla_ error.
i able overcome error forcing use of system version removing local version of file such:
rm lib/librrefblas.so
Comments
Post a Comment