/Intro_to_Fraud_Detection/conda.yaml

https://github.com/miguelgfierro/sciblog_support · YAML · 40 lines · 26 code · 4 blank · 10 comment · 0 complexity · c87256f38f51e262cafa2cfd4031dc70 MD5 · raw file

  1. # To create the conda environment:
  2. # $ conda env create -n my_env_name -f conda.yaml
  3. #
  4. # To update the conda environment:
  5. # $ conda env update -n my_env_name -f conda.yaml
  6. #
  7. # To register the conda environment in Jupyter:
  8. # $ python -m ipykernel install --user --name my_env_name --display-name "Python (my_env_name)"
  9. #
  10. channels:
  11. - anaconda
  12. - conda-forge
  13. - defaults
  14. dependencies:
  15. - python==3.6
  16. - numpy==1.13.3
  17. - flask==1.0.2
  18. - ipykernel==4.6.1
  19. - cython==0.28.3
  20. - pip:
  21. - pandas==0.22.0
  22. - scipy==1.1.0
  23. - scikit-learn==0.19.1
  24. - tornado==4.5.3
  25. - jupyter==1.0.0
  26. - lightgbm==2.1.1
  27. - matplotlib==2.1.2
  28. - requests==2.18.4
  29. - asyncio==3.4.3
  30. - aiohttp==2.0.3
  31. - SQLAlchemy==1.2.4
  32. # For websockets, add flask-socketio, gevent-websocket, wsaccel and ujson
  33. - flask-socketio>=3.0.1
  34. - gevent-websocket>=0.10.1
  35. - wsaccel>=0.6.2
  36. - ujson>=1.35