Skip to content

Latest commit

 

History

History
22 lines (22 loc) · 530 Bytes

environment-setup.md

File metadata and controls

22 lines (22 loc) · 530 Bytes
  1. install anaconda, install docker
  2. create an environment for feast, selecting python 3.9. Activate the environment:
conda create --name feast python=3.9
conda activate feast
  1. install dependencies:
pip install pip-tools
brew install mysql
brew install xz protobuf openssl zlib
pip install cryptography -U
conda install protobuf
conda install pymssql
pip install -e ".[dev]"
make install-python-ci-dependencies PYTHON=3.9
  1. start the docker daemon
  2. run unit tests:
make test-python-unit