https://github.com/shih-hao-tseng/SLSpy
Raw File
Tip revision: 14f6efb8741f19669a3b5d4ac2a5f3a0c6d0f36e authored by Shih-Hao Tseng on 02 December 2019, 19:58:25 UTC
fix installation problems under Python 3
Tip revision: 14f6efb
Makefile
setup:
	dnf install python3-devel
	dnf install blas blas-devel
	dnf install lapack lapack-devel
	pip install --no-cache-dir -I scs
	pip install cvxpy
	pip install matplotlib

install:
	pip install -e .

uninstall:
	pip uninstall slspy
back to top