-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Yaml file for creating a conda enviroment
- Loading branch information
1 parent
312772a
commit 70a85be
Showing
1 changed file
with
34 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Use the command | ||
# | ||
# conda env create --file conda_env.yaml | ||
# | ||
# to create a conda enviroment named darcia. Using | ||
# conda-force, we get petsc and petsc4py with hypre and mumps. | ||
# | ||
name: darcia | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- python=3.12 | ||
- pytest | ||
- numpy | ||
- scipy | ||
- pyamg | ||
- matplotlib==3.8.0 | ||
- scikit-image | ||
- future | ||
- colour-science | ||
- ipympl | ||
- pillow | ||
- scikit-learn | ||
- pandas | ||
- plotly | ||
- pydicom | ||
- mpi4py | ||
- petsc | ||
- petsc4py | ||
- pip | ||
- pip: | ||
- largestinteriorrectangle | ||
- opencv-python | ||
- colour-checker-detection |