My learning notes for DataTalks.Club ML Ops zoomcamp
- Done using conda. Environment can be recreated using the
environment.yml
file with following command.
conda create --name <env name> --file environment.txt
conda env export --from-history > environment.yml
- Note that the conda install for Prefect will have issues when running
prefect server start
. Usepip install -U prefect
instead. Refer unit 3 notes for details.