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
DOC: Update instructions in README.md for developers. (#198)
- Update instructions in `README.md` for developers.
- Add defusedxml as dependency in setup.py.
- Update virtual environment name to tiatoolbox-dev.
- Update README.md for links.
Co-authored by: @shaneahmed
5. Create virtual environment for TIAToolbox using
85
+
86
+
```sh
87
+
$ conda env create -f requirements.dev.conda.yml # for linux/mac only.
88
+
$ conda activate tiatoolbox-dev
89
+
```
90
+
or
91
+
92
+
```sh
93
+
$ conda create -n tiatoolbox-dev python=3.8 # select version of your choice
94
+
$ conda activate tiatoolbox-dev
95
+
$ pip install -r requirements_dev.txt
96
+
```
97
+
6. To use the packages installed in the environment, run the command:
98
+
99
+
```sh
100
+
$ conda activate tiatoolbox-dev
101
+
```
102
+
72
103
73
104
### License
74
105
@@ -80,7 +111,7 @@ The full text of the licence is included in [LICENSE.md](https://raw.githubuserc
80
111
81
112
### Auxiliary Files
82
113
83
-
Auxiliary files, such as pre-trained model weights downloaded from the TIA Centre webpage (https://warwick.ac.uk/fac/cross_fac/tia/), are provided under the [Creative Commons Attribution-NonCommercial-ShareAlike Version 4 (CC BY-NC-SA 4.0) license](https://creativecommons.org/licenses/by-nc-sa/4.0/).
114
+
Auxiliary files, such as pre-trained model weights downloaded from the TIA Centre webpage (https://warwick.ac.uk/tia/), are provided under the [Creative Commons Attribution-NonCommercial-ShareAlike Version 4 (CC BY-NC-SA 4.0) license](https://creativecommons.org/licenses/by-nc-sa/4.0/).
0 commit comments