29 строки
629 B
YAML
29 строки
629 B
YAML
#
|
|
# To create the conda environment:
|
|
# $ conda env create -f environment.yml
|
|
#
|
|
# To update the conda environment:
|
|
# $ conda env update -f environment.yml
|
|
#
|
|
# To register the conda environment in Jupyter:
|
|
# $ conda activate nlp
|
|
# $ python -m ipykernel install --user --name nlp
|
|
#
|
|
name: nlp
|
|
channels:
|
|
- defaults
|
|
- conda-forge
|
|
dependencies:
|
|
- python==3.6.8
|
|
- ipykernel>=4.6.1
|
|
- jupyter>=1.0.0
|
|
- pytest>=3.6.4
|
|
- pip:
|
|
- black>=18.6b4
|
|
- papermill>=0.15.0
|
|
- ipywebrtc
|
|
- pre-commit>=1.14.4
|
|
- azureml-dataprep
|
|
- https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.1.0/en_core_web_sm-2.1.0.tar.gz
|
|
|