-
Notifications
You must be signed in to change notification settings - Fork 1.9k
talib/__init__.py need to be updated #706
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
Comments
In the same init.py file there is another from ._ta_lib import * at line 119 passed without any issue. wondering why. |
thinking of that from ._ta_lib import * can do everything with this from ._ta_lib import ( |
I don't understand why your module would be
|
Usually that error indicates the installation didn't finish compiling properly, usually indicative of missing dependencies. |
That's right. I tried again from windows using installation from source, and this time it did work. The error message I received when tried to do the same from Linux/ubuntu. anyway. 0.6.1 works perfect for me. |
what version of the underlying TA-Lib C library do you have? |
0.6.4 |
Python 3.13.1 (main, Feb 9 2025, 06:28:54) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
after change it to from ._ta_lib to ._ta-lib import, talib can be imported successfully.
The text was updated successfully, but these errors were encountered: