Skip to content

Commit 2e449cb

Browse files
committed
tools: always set the brew path
1 parent 17aa730 commit 2e449cb

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

tools/install-macos.sh

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1+
#!/bin/bash
12

23
brew install ta-lib
34

4-
arch="$(uname -m)"
5-
if [ "$arch" = "arm64" ]; then
6-
export TA_INCLUDE_PATH="$(brew --prefix ta-lib)/include"
7-
export TA_LIBRARY_PATH="$(brew --prefix ta-lib)/lib"
8-
fi
5+
export TA_INCLUDE_PATH="$(brew --prefix ta-lib)/include"
6+
export TA_LIBRARY_PATH="$(brew --prefix ta-lib)/lib"
97

108
pip3 install ta-lib

0 commit comments

Comments
 (0)