You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will prompt for your rsa key passphrase. If you have access to `PyRate` repo and once you have entered the passphrase, `PyRate` will clone in your current directory.
33
+
This will prompt for your rsa key passphrase. If you have access to `PyRate` repo and once you have entered the passphrase, `PyRate` will clone in your current (home) directory.
37
34
38
35
39
-
## Set up PYRATEPATH
40
-
You need to add the directory containing the `pyrate` folder to the `PYTHONPATH` environment variable.
36
+
## Set up envrionment variables
41
37
42
-
The environment variable `PYRATEPATH` needs to point to the folder where you put the test data. This is how I set up my environment variable:
38
+
You need to add the directory containing the `pyrate/` directory to the `PYTHONPATH` environment variable, and the environment variable `PYRATEPATH` needs to point to the directory containing the `tests/` directory:
43
39
44
-
export PYRATEPATH="/nas/users/u92456/unix/PyRate"
40
+
export PYRATEPATH="~/PyRate"
45
41
export PYTHONPATH=$PYRATEPATH/:$PYTHONPATH
46
42
47
43
@@ -50,21 +46,23 @@ The environment variable `PYRATEPATH` needs to point to the folder where you put
50
46
source ~/anaconda2/bin/activate ~/anaconda2/
51
47
conda install -c conda conda-env
52
48
53
-
The `conda-env` package enables `yml` based installation.
49
+
The `conda-env` package enables YAML based installation.
54
50
55
51
Note that using the `source activate` command only works cleanly when using the bash shell
56
52
57
53
## Create the `pyrate` environment
54
+
55
+
The required packages for PyRate are listed in the environment.yml (YAML format) file:
0 commit comments