Last active
September 19, 2025 03:48
-
-
Save MkDierz/ef3a116ccf13eefb102a640a109a4266 to your computer and use it in GitHub Desktop.
Revisions
-
MkDierz revised this gist
Sep 19, 2025 . 1 changed file with 38 additions and 10 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,10 +1,38 @@ { "nbformat": 4, "nbformat_minor": 0, "metadata": { "colab": { "provenance": [] }, "kernelspec": { "name": "python3", "display_name": "Python 3" }, "language_info": { "name": "python" } }, "cells": [ { "cell_type": "code", "execution_count": null, "metadata": { "id": "Djk81coUFRQt" }, "outputs": [], "source": [ "# download TA-Lib\n", "!wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz\n", "import os\n", "os.chdir('ta-lib') # Can't use !cd in co-lab\n", "!./configure --prefix=/usr\n", "!make\n", "!make install\n", "# wait ~ 30s\n", "os.chdir('../')\n", "!pip install TA-Lib" ] } ] } -
MkDierz created this gist
Sep 19, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ # download TA-Lib !wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz import os os.chdir('ta-lib') # Can't use !cd in co-lab !./configure --prefix=/usr !make !make install # wait ~ 30s os.chdir('../') !pip install TA-Lib