-
Notifications
You must be signed in to change notification settings - Fork 370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installation with Conda. fatal error: cblas.h: No such file or directory #300
Comments
Could you try the conda blas?
|
Sorry. But I still get the same error. |
Sorry, the header is in the dev repo
|
Thanks for your suggestion. I tried a lot today but it still failed. The results of
I'd appreciate it if you could tell me what goes wrong in the installation process. |
Please follow the instruction exactly.
|
Thanks for the reply! Step 1 and step 2 work well.
|
I don't see the This is the compilation command you ran
If you just follow the command |
Thanks! But I don't think I removed that option. Here is my command history. I just copied and pasted that command.
|
Ah sorry, my bad, since blas was not supplied to the setup, it didn't trigger the blas include dirs to be added to the compilation. Please try this again with
|
Thanks for your quick reply! Unfortunately, the error seems related to gcc now?
|
Related to #286 (comment) This is a GCC bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83204 The simplest solution is to install CUDA 11.1 and GCC 9, but since you don't have sudo, you have these options.
|
Thanks for your patience! I tried again today and choose to email the admin now. Hope this can be solved soon! |
Closing the issue. For those who looking for the solution for
as shown in the README installation section https://github.com/NVIDIA/MinkowskiEngine#pip |
Same with CentOS, I installed openblas with
My install command is |
I checkout to v0.4.3 and did |
Describe the bug
I use the installation with Conda way and follow the instructions.
conda install mkl mkl-include -c intel
conda install pytorch -c pytorch
git clone https://github.com/StanfordVL/MinkowskiEngine.git
cd MinkowskiEngine
python setup.py install --blas=mkl
fatal error: cblas.h: No such file or directory
#include <cblas.h>
^~~~~~~~~
compilation terminated.
To Reproduce
python setup.py install --blas=mkl
Desktop (please complete the following information):
Additional context
Maybe
sudo apt install libopenblas-dev
would solve this? But I do not have permissions to usesudo
command.The text was updated successfully, but these errors were encountered: