-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
36 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,18 +40,21 @@ faster and easier to use. For additional references, see inspirations like | |
For Cholesky factorization via CHOLMOD, `scikit-sparse` requires SuiteSparse: | ||
|
||
```bash | ||
# Via conda. | ||
# Option 1: via conda. | ||
conda install conda-forge::suitesparse | ||
# Via apt. | ||
# Option 2: via apt. | ||
sudo apt update | ||
sudo apt install -y libsuitesparse-dev | ||
# Via brew. | ||
# Option 3: via brew. | ||
brew install suite-sparse | ||
``` | ||
|
||
Then, from your environment of choice: | ||
|
||
```bash | ||
# Option 1: from git. | ||
pip install git+ssh://[email protected]/brentyi/jaxls.git | ||
# Option 2: editable. | ||
git clone https://github.com/brentyi/jaxls.git | ||
cd jaxls | ||
pip install -e . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters