Commit 9c314ef2427a3e0b14d966c8ff8ddeb088ab50e2
1 parent
c9ad3ee5
Exists in
master
and in
2 other branches
Add instructions on how to fix (most) cache issues when they crop up.
Showing
1 changed file
with
7 additions
and
0 deletions
Show diff stats
README.md
@@ -53,3 +53,10 @@ Getting `MemoryErrors` ? | @@ -53,3 +53,10 @@ Getting `MemoryErrors` ? | ||
53 | Try with the `--no-cache-dir` option. | 53 | Try with the `--no-cache-dir` option. |
54 | 54 | ||
55 | `pip install scipy --no-cache-dir` | 55 | `pip install scipy --no-cache-dir` |
56 | + | ||
57 | +### Fix permissions problems with the cache | ||
58 | + | ||
59 | +``` | ||
60 | +sudo setfacl -R -m u:apache:rwx -m u:`whoami`:rwx cache | ||
61 | +sudo setfacl -dR -m u:apache:rwx -m u:`whoami`:rwx cache | ||
62 | +``` | ||
56 | \ No newline at end of file | 63 | \ No newline at end of file |