/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
- # To create the conda environment:
- # $ conda env create -n my_env_name -f conda.yaml
- #
- # To update the conda environment:
- # $ conda env update -n my_env_name -f conda.yaml
- #
- # To register the conda environment in Jupyter:
- # $ python -m ipykernel install --user --name my_env_name --display-name "Python (my_env_name)"
- #
- channels:
- - anaconda
- - conda-forge
- - defaults
- dependencies:
- - python==3.6
- - numpy==1.13.3
- - flask==1.0.2
- - ipykernel==4.6.1
- - cython==0.28.3
- - pip:
- - pandas==0.22.0
- - scipy==1.1.0
- - scikit-learn==0.19.1
- - tornado==4.5.3
- - jupyter==1.0.0
- - lightgbm==2.1.1
- - matplotlib==2.1.2
- - requests==2.18.4
- - asyncio==3.4.3
- - aiohttp==2.0.3
- - SQLAlchemy==1.2.4
- # For websockets, add flask-socketio, gevent-websocket, wsaccel and ujson
- - flask-socketio>=3.0.1
- - gevent-websocket>=0.10.1
- - wsaccel>=0.6.2
- - ujson>=1.35