Skip to content

Commit 3754ca2

Browse files
author
Pasquale Minervini
committed
Updating documentation and fixing Issue #346
1 parent e78bb14 commit 3754ca2

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

docs/How_to_install_and_run.md

+12-6
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,24 @@
33
## Install jack and test your installation
44

55
The installing procedure currently has three plus one steps:
6-
1. Install Tensorflow
7-
2. Run `setup.py`
6+
1. Install TensorFlow
7+
2. Run `pip install`
88
3. Test your install
99
4. (Optional) install missing dependencies
1010

11-
#### 1. Install Tensorflow
11+
#### 1. Install TensorFlow
1212
- Requirements: Python3, [pip3](http://stackoverflow.com/questions/6587507/how-to-install-pip-with-python-3)
13-
- GPU requirements: [CUDA 8.0](https://developer.nvidia.com/cuda-downloads) and cuDNN (you need to register with NVIDIA)
1413
- Follow the TensorFlow [installation guide](https://www.tensorflow.org/get_started/os_setup)
1514

16-
#### 2. Run `setup.py`
17-
- Run in the main directory: `$ sudo python3 setup.py install`
15+
#### 2. Run `pip install`
16+
- Run in the main directory:
17+
```
18+
jack$ sudo python3 -m pip install -e .[tf]
19+
```
20+
- In case you want GPU support:
21+
```
22+
jack$ sudo python3 -m pip install -e .[tf_gpu]
23+
```
1824

1925
#### 3. If you run in some problems with missing libraries
2026
- Run in the main directory `$ make test` to test the core functionality of jack

0 commit comments

Comments
 (0)