-
Notifications
You must be signed in to change notification settings - Fork 5
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 #3 from RHEcosystemAppEng/doc
Add developer environment setup steps in README
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Setting up Developer Environment | ||
|
||
## Creating Developer Environment | ||
For Mac(Intel) | ||
|
||
### Steps | ||
|
||
1. Start Docker daemon, install anaconda3 | ||
|
||
2. Create an environment for Feast, selecting python 3.9. Activate the environment: | ||
``` | ||
conda create --name feast python=3.9 | ||
conda activate feast | ||
``` | ||
|
||
3. Install dependencies: | ||
``` | ||
pip install pip-tools | ||
brew install mysql@8.0 (latest - mysql@8.3 version fails the dev env) | ||
brew install xz protobuf openssl zlib | ||
pip install cryptography -U | ||
conda install protobuf | ||
conda install pymssql | ||
git clone https://github.com/feast-dev/feast.git | ||
cd feast | ||
pip install -e ".[dev]" | ||
make install-protoc-dependencies | ||
make install-python-ci-dependencies PYTHON=3.9 | ||
``` | ||
|
||
4. Run unit tests: | ||
``` | ||
make test-python | ||
``` | ||
|
||
|