File size: 1,025 Bytes
a5f760c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Emergent Language Library


## Running code

For each emergent language entry, we provide wrapper code to create
a reproducible environment and run the emergent language-generating code.
Environments are specified precisely in the `environment.yml` file; if you wish
to edit the dependencies manually, it may be easier to start with
`environment.editable.yml` instead, if it exists. 

### Git submodules
This project uses git submodules to manage external dependencies.  Submodules
do not always operate in an intuitive way, so we provide a brief explanation of
how to use them here.  By default, submodules are not "init-ed" which means
that they will be empty after you clone the project.  If you would like to
populate a submodule (i.e., the directory pointing to another repo) to see or
use its code, run `git submodule init path/to/submodule` to mark it as init-ed.
Second, run `git submodule update` to populated init-ed submodules.  Run `git
submodule deinit -f path/to/submodule` to make the submodule empty again.