Spaces:
Running
Running
Pedro Cuenca
commited on
Commit
•
df7b7be
1
Parent(s):
ccd00b6
* Update README with `-f` instructions for pip.
Browse files
README.md
CHANGED
@@ -16,6 +16,10 @@
|
|
16 |
|
17 |
|
18 |
## Dependencies Installation
|
19 |
-
You should create a new python virtual environment and install the project dependencies inside the virtual env
|
|
|
|
|
|
|
|
|
20 |
|
21 |
If you use `conda`, you can create the virtual env and install everything using: `conda env update -f environments.yaml`
|
|
|
16 |
|
17 |
|
18 |
## Dependencies Installation
|
19 |
+
You should create a new python virtual environment and install the project dependencies inside the virtual env. You need to use the `-f` (`--find-links`) option for `pip` to be able to find the appropriate `libtpu` required for the TPU hardware:
|
20 |
+
|
21 |
+
```
|
22 |
+
$ pip install -r requirements.txt -f https://storage.googleapis.com/jax-releases/libtpu_releases.html
|
23 |
+
```
|
24 |
|
25 |
If you use `conda`, you can create the virtual env and install everything using: `conda env update -f environments.yaml`
|