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
New, independent implementation of `Topology.from_pdb`
9
+
New, independent implementation of OpenFF's `Topology.from_pdb`
10
10
11
11
OpenFF Pablo is bound by a [Code of Conduct](https://github.com/openforcefield/openff-pablo/blob/main/CODE_OF_CONDUCT.md).
12
12
13
13
### Installation
14
14
15
-
To build OpenFF Pablo from source,
16
-
we highly recommend using virtual environments.
17
-
If possible, we strongly recommend that you use
18
-
[Anaconda](https://docs.conda.io/en/latest/) as your package manager.
19
-
Below we provide instructions both for `conda` and
20
-
for `pip`.
15
+
This is a pre-release of Pablo and is not yet published in any package manager.
16
+
You can install it by managing your own Conda environment and installing it manually.
21
17
22
-
#### With conda
18
+
Here we describe dependency and environment management with Micromamba, but other Conda-compatible package managers such as Conda and Mamba work the same way - just change the name of the executable.
23
19
24
-
Ensure that you have [conda](https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html) installed.
25
-
26
-
Create a virtual environment and activate it:
20
+
Download the user environment YAML file and create a virtual environment from it:
27
21
28
22
```
29
-
conda create --name pablo
30
-
conda activate pablo
23
+
curl https://raw.githubusercontent.com/openforcefield/openff-pablo/refs/heads/main/devtools/conda-envs/user_env.yaml | micromamba env create --name pablo -f /dev/stdin
31
24
```
32
25
33
-
Install the development and documentation dependencies:
26
+
#### Development build
27
+
28
+
Clone the repository:
34
29
35
30
```
36
-
conda env update --name pablo --file devtools/conda-envs/test_env.yaml
37
-
conda env update --name pablo --file docs/requirements.yaml
0 commit comments