Changes
Page history
Update Update Guide
authored
Oct 08, 2019
by
Jonathan Jones
Show whitespace changes
Inline
Side-by-side
Update-Guide.md
View page @
65b7a152
# Updating the annotation environment
*
Synchronize updates in this repository by pulling them from the remote.
```
bash
```
console
user@host:~$
cd
$HOME
/repo/blocks
user@host:~/repo/blocks$
git pull
```
*
Synchronize updates in the environment's software dependencies.
```
bash
```
console
user@host:~/repo/blocks$
conda deactivate
user@host:~/repo/blocks$
conda
env
update
--file
blocks-analysis.yml
user@host:~/repo/blocks$
conda activate blocks-analysis
```
*
Install the new changes.
```
console
user@host:~/repo/blocks$
python setup.py
install
```
# Pulling from git when your local version has been modified
Here's a typical scenario:
...
...
...
...