FrancisTse8 commented on issue #7852: Trouble installing MXNet on Raspberry Pi 3
URL: 
https://github.com/apache/incubator-mxnet/issues/7852#issuecomment-329243575
 
 
   Found out from S?bastien Villemot <sebast...@debian.org> that I have 
correctly installed LAPACK (shared library, doc and development libraries) and 
also ATLAS (shared library). Issue is that I gave a wildcard (liblapack*) to 
apt-get, so it also tried to install virtual packages (like liblapack3gf), 
which no longer exists but only appears in a Breaks relationship.
   
   So, I continued with the MXNet installation by doing:
   sudo apt-get update
   sudo apt-get -y install git cmake build-essential g++-4.8 c++-4.8 liblapack* 
libblas* libopencv*
   git clone https://github.com/dmlc/mxnet.git --recursive
   cd mxnet
   make
   
   However, I got the same error as when I was using Stretch version of 
Raspbian:
   /usr/bin/ld: cannot find -lcblas
   collect2: error: ld returned 1 exit status
   Makefile:327: recipe for target 'lib/libmxnet.so' failed
   make: *** [lib/libmxnet.so] Error 1
   
   I was going to try loading the cblas library again but this time I got 
message that libcblas* or libcblas could not be found:
   pi@raspberrypi:~/mxnet $ sudo apt-get install libcblas*
   Reading package lists... Done
   Building dependency tree       
   Reading state information... Done
   E: Unable to locate package libcblas*
   E: Couldn't find any package by regex 'libcblas*'
   pi@raspberrypi:~/mxnet $ sudo apt-get install libcblas
   Reading package lists... Done
   Building dependency tree       
   Reading state information... Done
   E: Unable to locate package libcblas
   
   So it appears make would not work for Raspbian jessie as well. @arank, guess 
I will have to wait for you to take a look at the issue when you can.  Thanks.
   
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to