-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
24 lines (21 loc) · 863 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Installation Instructions
To run the scripts, you will need the following packages and libraries installed:
- Python (obviously), any version >= 3.x
- tensorflow 2.x
- Installation instructions:
https://www.tensorflow.org/install/pip
This should also install the Keras front-end.
For development I used the `tf-nightly`, which is probably your best bet for getting this to work.
- pyparsing >= 3.0.x
- `python3 -m pip install pyparsing`
I used version 3.0.7 for development. Note that older versions
(<= 3.0.x) use deprecated function names, and are not compatible
with our scripts at present.
- numpy >= 1.22.x
- `python3 -m pip install numpy`
Older versions will probably do just fine.
Once you have all of the dependencies installed, in the
topmost directory run
```
python3 -m pip install -e .
```