TA-Lib / ta-lib-python

Python wrapper for TA-Lib (http://ta-lib.org/).
http://ta-lib.github.io/ta-lib-python
Other
9.69k stars 1.76k forks source link

[Question] Path of Compiled Dependencies for Linux #424

Closed pranjal-joshi closed 3 years ago

pranjal-joshi commented 3 years ago

Hello,

I am using following process from the README to set up dependencies for Linux which includes compiling source code.

$ tar -xzf ta-lib-0.4.0-src.tar.gz
$ cd ta-lib/
$ ./configure --prefix=/usr
$ make
$ sudo make install

I am using GitHub Actions for the Automatic Release of my Application. For that, I've to compile this library every time before release. Can you tell me the PATH where the final compiled binaries of TA-Lib or anything important is saved on a Linux system? So that I can use GitHub Cache Action to make a copy of this folder and speed up my build process for releases.

mrjbq7 commented 3 years ago

You can examine the logs when you run sudo make install, but if you want a place to start:

/usr/include/ta-lib/
/usr/lib/libta_lib.a
/usr/lib/libta_lib.la
/usr/lib/libta_lib.so
/usr/lib/libta_lib.so.0
/usr/lib/libta_lib.so.0.0.0

Some of those are typically symlinks, so I suppose you'd want to save them as such.