env-tf-2.yml 548 B

12345678910111213141516171819202122232425
  1. ---
  2. name: tf-2
  3. channels:
  4. - apple
  5. - conda-forge
  6. dependencies:
  7. - python>=3.10.0,<3.12.0
  8. - ipykernel>=6.29.0
  9. - tensorflow-deps>=2.10.0
  10. # these two are here to keep tensorflow-deps happy
  11. - numpy>=1.23.2,<1.23.3
  12. - protobuf>=3.19.1,<3.20
  13. - pip>=25.0
  14. - pip:
  15. - tensorflow>=2.19.0
  16. - tensorflow-metal>=1.2.0
  17. # these are to prevent pip from upgrading them
  18. - pandas>=2.2.0,<2.3.0
  19. - numpy>=2.1.0,<2.2.0
  20. - scipy>=1.13.0
  21. - matplotlib>=3.10.0
  22. - protobuf>=5.29.0
  23. - seaborn>=0.13.0
  24. - ipykernel>=6.29.0
  25. ...