examples/EMAN2_w_theano.md
... ...
@@ -3,19 +3,19 @@ It is possible to use GPU-accelerated neural network particle picking in EMAN2 v
3 3
*First you must configure your machine with the Nvidia CUDA Toolkit and a configuration file describing your GPUs*. Due to distribution restrictions we cannot install Nvidia nvcc compilers directly.
4 4
5 5
### Download and install the Nvidia CUDA Toolkit for CUDA
6
-Because the Theano module installed in EMAN2 requires the nvcc compiler and these are not re-distributable, you must first download the Nvidia CUDA Toolkit. You can find that [here](https://developer.nvidia.com/cuda-downloads?target_os=Linux&target_arch=x86_64&target_distro=CentOS). It is not necessary to have administrator privileges to install this, but you may want to ask your local administrator to assist to ensure you have the proper drivers for your GPU. This which does require admin privileges.
6
+Because the Theano module installed in EMAN2 requires the nvcc compiler and these are not re-distributable, you must first download the Nvidia CUDA Toolkit. You can find that [here](https://developer.nvidia.com/cuda-downloads?target_os=Linux&target_arch=x86_64&target_distro=CentOS). It is not necessary to have administrator privileges to install this, but you may want to ask your local administrator to assist to ensure you have the proper drivers for your GPU. Nvidia driver installation requires admin privileges.
7 7
8 8
### Set the CUDA_HOME variable with a path to your installed CUDA Toolkit.
9
-For Theano to find the NVidia nvcc compiler and the CUDA libraries required, the CUDA_HOME variable must be set in your shell with the correct path to the CUDA Toolkit.
9
+For Theano to find the Nvidia nvcc compiler and the CUDA libraries required, the CUDA_HOME variable must be set in your shell with the correct path to the CUDA Toolkit.
10 10
11 11
If your CUDA Toolkit installation is at : /usr/local/cuda
12 12
13
-For *bash* :
13
+For **bash** :
14 14
```
15 15
export CUDA_HOME=/usr/local/cuda
16 16
```
17 17
18
-For *tcsh* :
18
+For **tcsh** :
19 19
```
20 20
setenv CUDA_HOME /usr/local/cuda
21 21
```