Reputation: 113
I'm trying to install TA-Lib on Python, i'm using a x64 version so i can't install Ta-Lib using pip. I'm following these steps to run it but i have not clear the step 4: "Build the library nmake". I have opened the prompt but i don't really know how to build nmake
, can anyone help me?
Upvotes: 3
Views: 7254
Reputation: 764
in your env, run command: python --version, so you will know you python version. then download the appropriate wheel. if it is python 3.6, then download TA_Lib-0.4.15-cp36-cp36m-win_amd64.whl
Upvotes: 1
Reputation: 3203
nmake
is the make
version of the Microsoft Compiler Collection. You probably don't have Visual Studio installed.
See here:
You have several precompiled packages, including ta-lib
Upvotes: 0