File tree 1 file changed +12
-6
lines changed
1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change 3
3
## Install jack and test your installation
4
4
5
5
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 `
8
8
3 . Test your install
9
9
4 . (Optional) install missing dependencies
10
10
11
- #### 1. Install Tensorflow
11
+ #### 1. Install TensorFlow
12
12
- 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)
14
13
- Follow the TensorFlow [ installation guide] ( https://www.tensorflow.org/get_started/os_setup )
15
14
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
+ ```
18
24
19
25
#### 3. If you run in some problems with missing libraries
20
26
- Run in the main directory ` $ make test ` to test the core functionality of jack
You can’t perform that action at this time.
0 commit comments