我一直在尝试在我的ubuntu盒子上安装tsne(https://github.com/danielfrg/tsne)。它一直给我的错误是:
/usr/bin/ld: cannot find -lcblas
collect2: ld returned 1 exit status
command g++ failed with exit status 1
我有两个问题: 是因为我没有合适的g ++编译器吗? 2.如何在我的ubuntu盒子上获得libcblas?
我认为上述两个问题都能解决我的问题。我在页面上提到了所有其他依赖项。
答案 0 :(得分:4)
您的g++
没问题,您可能错过了libatlas-base-dev
个软件包,请使用sudo apt-get install
进行安装。