/Intro_to_Fraud_Detection/conda_gpu.yaml

https://github.com/miguelgfierro/sciblog_support · YAML · 43 lines · 25 code · 7 blank · 11 comment · 0 complexity · 5616d4878eeb49880ab00c57b6931d13 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. - pip:
  20. - pandas==0.22.0
  21. - scipy==1.1.0
  22. - scikit-learn==0.19.1
  23. - tornado==4.5.3
  24. - jupyter==1.0.0
  25. # In case you want to install LigthGBM with GPU, make sure you add the correct path
  26. - lightgbm==2.1.1 --install-option=--gpu --install-option="--opencl-include-dir=/usr/local/cuda/include/" --install-option="--opencl-library=/usr/local/cuda/targets/x86_64-linux/lib/libOpenCL.so"
  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