-
Notifications
You must be signed in to change notification settings - Fork 0
/
colab-construct.yaml
37 lines (33 loc) · 1018 Bytes
/
colab-construct.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: condacolab # you can edit this if you want
version: 0.1 # increment if you change the specs, for reproducibility!
channels:
- conda-forge
- defaults
specs:
- python =3.8 # Python MUST be version 3.7
- pip
- conda
- mamba # mamba is not needed but recommended
# If any of your packages pulls in cudatoolkit:
# uncomment the line below to make sure it matches
# the output of `!echo $CUDA_VERSION` on colab
# and take only the major.minor components
# Right now, Colab uses CUDA 11.1
- cudatoolkit =11.1
# Add your dependencies below this line
# -------------------------------------
#- flask # example
dependencies:
- python=3.8
- spacy
- spacy-model-en_core_web_sm
- spacy-transformers
- filelock
- pylint
- beautifulsoup4
# Pip dependencies are NOT recommended. If you do need them
# uncomment the line below and edit `pip-dependencies.sh`.
post_install: pip-dependencies.sh
# do not edit below this line
# ---------------------------
installer_type: sh