We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6122831 commit bb6b10dCopy full SHA for bb6b10d
1 file changed
.github/workflows/ta-lib-python-build-docs.yml
@@ -27,8 +27,12 @@ jobs:
27
28
- name: Install system dependencies (TA-Lib C library)
29
run: |
30
- sudo apt-get update
31
- sudo apt-get install -y libta-lib-dev
+ wget https://github.com/ta-lib/ta-lib/releases/download/v0.6.4/ta-lib-0.6.4-src.tar.gz
+ tar -xzf ta-lib-0.6.4-src.tar.gz
32
+ cd ta-lib-0.6.4/
33
+ ./configure --prefix=/usr
34
+ make
35
+ sudo make install
36
37
- name: Install Python dependencies
38
0 commit comments