-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinstall_tips.py
More file actions
50 lines (30 loc) · 964 Bytes
/
install_tips.py
File metadata and controls
50 lines (30 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
Created on Mon Feb 18 16:34:43 2019
@author: luke
"""
"""
# Installation
Requirements beyond NumPy, SciPy, Matplotlib:
pip install euclid
pip install plyfile
pip install pyOpenGL
pyOpenGL GLUT issue:
https://stackoverflow.com/questions/26700719/pyopengl-glutinit-nullfunctionerror
Linux Users can just install glut using the following command:
$ sudo apt-get install freeglut3-dev
Most critical, you need suitsparse for fast inversion of sparse matrices
in order to take advantage of some of the solver forumulations:
get an up to date suitsparse [here](https://pythonhosted.org/scikit-sparse/overview.html)
Installing scikit-sparse requires:
Python
NumPy
SciPy
Cython
CHOLMOD
On Debian/Ubuntu systems, the following command should suffice:
$ apt-get install python-scipy libsuitesparse-dev
Then just:
$ pip install --user scikit-sparse
"""