Commit 9c314ef2427a3e0b14d966c8ff8ddeb088ab50e2

Authored by Goutte
1 parent c9ad3ee5

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 53 Try with the `--no-cache-dir` option.
54 54  
55 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 63 \ No newline at end of file
... ...