You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/start_page.md
+14-1Lines changed: 14 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ pip install -e .
47
47
```
48
48
49
49
Now you can use all SynapseNet features. From now on, just activate the environment via
50
-
```
50
+
```bash
51
51
conda activate synapse-net
52
52
```
53
53
to use them.
@@ -58,6 +58,19 @@ to use them.
58
58
59
59
> Note: If you have issues with the CUDA version then install a PyTorch that matches your nvidia drivers. See [pytorch.org](https://pytorch.org/) for details.
60
60
61
+
### Updating SynapseNet
62
+
63
+
If you have installed SynapseNet following the instructions above then you can update it like this:
64
+
- Go to the foloder where you have downloaded SyanapseNet in a terminal, e.g. via `cd synapase-net`
65
+
- Then get the latest changes via git:
66
+
```bash
67
+
git pull origin main
68
+
```
69
+
- And rerun the pip installation:
70
+
```bash
71
+
pip install -e .
72
+
```
73
+
After this SynapseNet will be up-to-date and you can use the latest features!
0 commit comments