Guest User

Untitled

a guest
Dec 14th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. This is a small gist to install ltfatpy from anaconda
  2.  
  3. Steps
  4. 1. Install anaconda (I recommend miniconda)
  5. 2. Add conda to the path (miniconda2)
  6. ```export PATH=/users/nperraud/miniconda2/bin:$PATH```
  7. 3. Create an environnement and activate it
  8. ```
  9. conda create --name pyltfat python=3.5
  10. source activate pyltfat
  11. ```
  12. 4. Install library
  13. ```
  14. conda install fftw
  15. conda install -c conda-forge lapack
  16. conda install -c conda-forge blas
  17. ```
  18. 5. Install ltfatpy
  19. ```pip install ltfatpy```
Add Comment
Please, Sign In to add comment