You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+36-2
Original file line number
Diff line number
Diff line change
@@ -17,11 +17,45 @@
17
17
MatterSim is a deep learning atomistic model across elements, temperatures and pressures.
18
18
19
19
## Installation
20
+
### Install from PyPI
21
+
> [!TIP]
22
+
> While not mandatory, we recommend creating a clean conda environment before installing MatterSim to avoid potential package conflicts. You can create and activate a conda environment with the following commands:
23
+
>
24
+
> ```bash
25
+
># create the environment
26
+
> conda create -n mattersim python=3.9
27
+
>
28
+
># activate the environment
29
+
> conda activate mattersim
30
+
>```
31
+
>
32
+
33
+
To install MatterSim, run the following command:
34
+
```bash
35
+
pip install mattersim
36
+
```
37
+
38
+
In case you want to install the package with the latest version, you can run the following command:
> We strongly recommend that users install MatterSim using [mamba or micromamba](https://mamba.readthedocs.io/en/latest/index.html), because *conda* can be significantly slower when resolving the dependencies in environment.yaml.
23
56
24
57
To install the package, run the following command under the root of the folder:
58
+
25
59
```bash
26
60
mamba env create -f environment.yaml
27
61
mamba activate mattersim
@@ -37,11 +71,11 @@ from ase.build import bulk
37
71
from ase.units import GPa
38
72
from mattersim.forcefield import MatterSimCalculator
To install the package, run the following command under the root of the folder:
13
26
@@ -17,11 +30,7 @@ To install the package, run the following command under the root of the folder:
17
30
conda activate mattersim
18
31
pip install -e .
19
32
20
-
Obtain the model checkpoints
33
+
Model checkpoints
21
34
----------------------------
22
35
23
-
You may obtain our model checkpoints from
24
-
25
-
.. code-block:: console
26
-
27
-
# link to somewhere
36
+
The currently available model checkpoints can be found in the `MatterSim GitHub repository <https://github.com/microsoft/mattersim/tree/main/src/mattersim/pretrained_models>`_.
0 commit comments