-
Notifications
You must be signed in to change notification settings - Fork 77
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
Numba not installing #85
Comments
Just read that is it mostly for Reaction-Diffusion which I don't use, so no urgency on my part. |
Hi @JoelGodin , yes, I can confirm that it is currently used only for the Reaction-Diffusion. |
As far as i can tell, a precompiled version of numba for python 3.7 may not be available for macOS, so the pip installer download source and must compile on the fly. |
Hi @s-leger thanks :-) Do you have any possible solution to suggest? |
Pip class should be verbose enougth to provide a reason for failure to install pre-compiled version, maybe a missing dep issue (as by default it does not try to solve such deps --no-deps argument) No deps argument is important as such package may require numpy as dep and is likely to break blender's numpy by overriding it. |
I am seeing this:
![2](https://user-images.githubusercontent.com/9205295/100553896-e4179f00-325e-11eb-88c2-36f286ee5b69.png)
nw_path_close_fd Failed to close guarded necp fd 6 [9: Bad file descriptor]
…On Sun, Nov 29, 2020 at 4:06 PM s-leger ***@***.***> wrote:
Pip class should be verbose enougth to provide a reason for failure to
install pre-compiled version, maybe a missing dep issue (as by default it
does not try to solve such deps --no-deps argument)
Any console log of failed setup may help to narrow down the issue on macOS
- maybe missing llvmlite 0.34.*
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#85 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACGHML5JAKXOT2TCSV6MQPDSSKZXBANCNFSM4UFZHWEQ>
.
|
open blender and from a console, run (assuming tissue folder is "tissue-master") from tissue-master.utils_pip import Pip
Pip.install("numba") You should see a brunch of pip related lines on the console. |
I got this:
>> from tissue-b290-dev0.3.48.utils_pip import Pip
File "<blender_console>", line 1
from tissue-b290-dev0.3.48.utils_pip import Pip
^
SyntaxError: invalid syntax
>> Pip.install("numba")
Traceback (most recent call last):
File "<blender_console>", line 1, in <module>
NameError: name 'Pip' is not defined
…>>
On Sun, Nov 29, 2020 at 4:35 PM s-leger ***@***.***> wrote:
open blender and from a console, run (assuming tissue folder is
"tissue-master")
from tissue-master.utils_pip import PipPip.install("numba")
You should see a brunch of pip related lines on the console.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#85 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACGHMLYQSNRJWWTFHCAHTEDSSK5BNANCNFSM4UFZHWEQ>
.
|
Ok, |
Like this:
>> from tissue-b290-dev0348utils_pip import Pip
File "<blender_console>", line 1
from tissue-b290-dev0348utils_pip import Pip
^
SyntaxError: invalid syntax
>> from tissueb290dev038utils_pip import Pip
Traceback (most recent call last):
File "<blender_console>", line 1, in <module>
ModuleNotFoundError: No module named 'tissueb290dev038utils_pip'
…>>
On Sun, Nov 29, 2020 at 5:02 PM s-leger ***@***.***> wrote:
Ok,
pay attention at removing every "." in the folder name, could also be an
issue for blender - this is not allowed by python - !
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#85 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACGHML4YBFLGC5VEAKJXAF3SSLAHLANCNFSM4UFZHWEQ>
.
|
Rename the folder itself, removing dot in folder name. from your_new_folder_name.utils_pip import Pip |
oops, I see what I did. Hold on. |
Okay, I get this
|
When you setup on macOS it does unzip into (assuming you are using default settings to setup your addons) |
hmm looks like it also did not like the "-" in the names. |
Okay, removed, recompressed, went okay, this from second command:
Installing collected packages: numba Running setup.py install for numba: started
(False, '') |
Ok, may miss llvmlite |
(False, '')
Installing collected packages: numba Running setup.py install for numba: started
(False, '') |
Hmm, with such "usefull" status report will be pretty hard to figure what the issue realy is. |
ok, thanks for your help on this. |
@s-leger Just wanted to ask first, "As far as i can tell, a precompiled version of numba for python 3.7 may not be available for macOS, so the pip installer download source and must compile on the fly." |
Blender should use her own python interpreter. Numba require
|
I see. |
Tried to install 0.3.48 and am getting this error:
I hit install, it installed something (from that popup) and then tried install numba and it turned blue for a moment, and then nothing. Still says numba has to be installed.
I used to have Xcode, but recently had a hard drive crash and did a new install on an SSD.
Now I can't install Xcode because is says I need 10.15 or newer.
I have 10.13 and can't install any newer macOS's.
Do I really need Xcode to install numba?
A clarification: I did hit install so I'm thinking it did install the dev tools. But still no numba install is happening.
The text was updated successfully, but these errors were encountered: