forked from robcarver17/pysystemtrade
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request robcarver17#1308 from hazzlim/update_install
docs: update ARM64 MacOS installation instructions
- Loading branch information
Showing
3 changed files
with
24 additions
and
17 deletions.
There are no files selected for viewing
This file contains 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 characters
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
# Cython 3.0.0 is not supported by pandas 1.0.5 | ||
python -m pip install "cython<3.0.0" wheel | ||
python -m pip install pyyaml==5.4.1 --no-build-isolation | ||
python -m pip install "numpy>=1.19.4,<1.24.0" --no-use-pep517 | ||
python -m pip install scipy --no-use-pep517 | ||
python -m pip install pandas==1.0.5 --no-use-pep517 | ||
python -m pip install statsmodels==0.12.2 --no-use-pep517 | ||
|
||
pip install -r requirements_apple_silicon.txt |
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
matplotlib>=3.0.0 | ||
pymongo==3.11.3 | ||
arctic==1.79.2 | ||
ib-insync==0.9.86 | ||
psutil==5.6.6 | ||
pytest>6.2 | ||
Flask>=2.0.1 | ||
Werkzeug>=2.0.1 | ||
PyPDF2>=2.5.0 |