cyrusyc commited on
Commit
639bd5d
·
1 Parent(s): b22d49d

disable tensorflow for deepmd installation

Browse files
Files changed (2) hide show
  1. .github/README.md +2 -0
  2. pyproject.toml +6 -3
.github/README.md CHANGED
@@ -31,6 +31,8 @@ bash scripts/install-pyg.sh
31
  bash scripts/install-dgl.sh
32
  pip install -e .[test]
33
  pip install -e .[mace]
 
 
34
  pip install -e .[deepmd]
35
  ```
36
 
 
31
  bash scripts/install-dgl.sh
32
  pip install -e .[test]
33
  pip install -e .[mace]
34
+ # DeePMD
35
+ export DP_ENABLE_TENSORFLOW=0
36
  pip install -e .[deepmd]
37
  ```
38
 
pyproject.toml CHANGED
@@ -33,13 +33,13 @@ dependencies=[
33
  "datasets",
34
  "torch-geometric",
35
  "safetensors",
36
- "pymatgen"
37
  ]
38
 
39
  [project.optional-dependencies]
40
  run = [
41
  "torch==2.2.0",
42
- "e3nn==0.5.1",
43
  "matgl==1.1.2",
44
  "dgl==2.4.0",
45
  "mace-torch==0.3.4",
@@ -49,7 +49,8 @@ run = [
49
  "orb-models==0.4.0",
50
  "alignn==2024.5.27",
51
  "prefect>=3.0.4,<3.1.0",
52
- "prefect-dask"
 
53
  ]
54
  app = [
55
  "streamlit==1.38.0",
@@ -71,6 +72,8 @@ test = [
71
  "alignn==2024.5.27",
72
  "pytest",
73
  "prefect>=3.0.4,<3.1.0",
 
 
74
  ]
75
  mace = [
76
  "mace-torch==0.3.4",
 
33
  "datasets",
34
  "torch-geometric",
35
  "safetensors",
36
+ "pymatgen",
37
  ]
38
 
39
  [project.optional-dependencies]
40
  run = [
41
  "torch==2.2.0",
42
+ "e3nn==0.5.1", # Conflict
43
  "matgl==1.1.2",
44
  "dgl==2.4.0",
45
  "mace-torch==0.3.4",
 
49
  "orb-models==0.4.0",
50
  "alignn==2024.5.27",
51
  "prefect>=3.0.4,<3.1.0",
52
+ "prefect-dask",
53
+ "dask",
54
  ]
55
  app = [
56
  "streamlit==1.38.0",
 
72
  "alignn==2024.5.27",
73
  "pytest",
74
  "prefect>=3.0.4,<3.1.0",
75
+ "prefect-dask",
76
+ "dask",
77
  ]
78
  mace = [
79
  "mace-torch==0.3.4",