-
Notifications
You must be signed in to change notification settings - Fork 84
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
Failed to install velocyto on macOS #351
Comments
I got the same problem. Does anyone know the solution? |
Hi r-osorio, I encountered the same problems. I solved this by explicitly choosing the Homebrew gcc version installed and not the /usr/bin/gcc. You can find the path to the Homebrew gcc version installed via In total, this means doing these steps for macOS:
|
Hi jumije, Tried your steps and all went well until installing again. While this got me further than before, now I am running into:
I came across this post and subsequently ran |
It works! Thanks! |
Attempting to install velocyto on mac OS monterey 12.4, and running into a similar error I have seen on other issue threads. When running
pip install velocyto
after installing dependencies with conda, I get:I have run
brew install gcc
andconda install gcc
, and tried runningCC=/usr/bin/gcc pip install velocyto
, which worked for some people (#58 and #53), but still gotI also tried installing python-dev, libgcc, and openmp, per other potential solutions i had looked up, none of which helped and result in the same error.
I have also tried installing from source, while modifying setup.py to have
C_COMPILE = False
andUSE_CYTHON = False
, as mentioned in #53. In this case, usingpip install -e .
appears to work, but then when trying to runvelocyto --help
, I get:Apologies if the answer is obvious, but I have been trying to find the problem and dont seem to understand what is preventing installation. I have also tried the same methods on an older Mac running OS Mojave 10.14 (intel chip), which had the same error messages regarding clang, gcc, and velocyto.speedboosted.
Thank you for any help you can provide. I would really like to use velocyto in my analysis if possible.
The text was updated successfully, but these errors were encountered: