forked from pybamm-team/liionpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.yml
More file actions
38 lines (32 loc) · 769 Bytes
/
Copy pathenvironment.yml
File metadata and controls
38 lines (32 loc) · 769 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
# Use this config file to create a conda development environment. This
# environment installs liionpack in editable mode which is useful for
# development of the liionpack source code. General users should install
# liionpack via pip.
# Create a conda environment named lipack
# $ cd liionpack
# $ conda env create --file environment.yml
# Activate the environment
# $ conda activate lipack
# Exit the environment
# $ conda deactivate
# Delete the environment
# $ conda env remove --name lipack
name: lipack
dependencies:
- numpy
- scipy
- matplotlib
- pandas
- ipython
- jupyter
- sympy
- pip
- pip:
- pybamm==23.9
- ipdb
- ruff
- mkdocstrings-python-legacy
- mkdocs-material
- mkdocs-jupyter
- nbconvert
- -e .