Skip to content

Commit 9b4bd9d

Browse files
authored
Merge pull request #157 from keiyamamo/update_installation
2 parents 0ba3c52 + 09fe122 commit 9b4bd9d

File tree

2 files changed

+24
-5
lines changed

2 files changed

+24
-5
lines changed

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,14 @@ geometries.
2929

3030
Installation
3131
------------
32-
VaMPy is a Python package for Python >= 3.8, with main dependencies to [morphMan](https://github.com/KVSlab/morphMan)
33-
and [Oasis](https://github.com/mikaem/Oasis). VaMPy and its dependencies can be installed with `conda` on Linux and
34-
macOS as explained [here](https://kvslab.github.io/VaMPy/conda.html). The package can also be installed and run through
35-
its latest `Docker` image supported by Windows, Linux, and macOS, and
36-
explained [here](https://kvslab.github.io/VaMPy/docker.html).
32+
VaMPy is a Python package for Python >= 3.8, with main dependencies to [morphMan](https://github.com/KVSlab/morphMan) and [Oasis](https://github.com/mikaem/Oasis). VaMPy and its dependencies can be installed with `conda` on n Linux and
33+
macOS using the following command:
34+
35+
```
36+
conda create -n your_environment -c conda-forge vampy
37+
```
38+
39+
More details on installation via `conda` can be found [here](https://kvslab.github.io/VaMPy/conda.html). The package can also be installed and run through its latest `Docker` image supported by Windows, Linux, and macOS, and explained [here](https://kvslab.github.io/VaMPy/docker.html).
3740

3841
Documentation
3942
-------------

docs/conda.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,22 @@ installation of all the dependencies.
1515

1616
## Installation on Linux or macOS
1717

18+
The easiest way to install `VaMPy` and its dependencies is via `conda-forge`. Run the following command in your terminal:
19+
20+
```
21+
conda create -n your_environment -c conda-forge vampy
22+
```
23+
24+
Once the installation is complete, activate the newly created environment:
25+
26+
```
27+
conda activate your_environment
28+
```
29+
30+
### Alternative: Manual Installation from Source
31+
32+
If you prefer to install `VaMPy` from source, follow these steps:
33+
1834
### Step 1: Clone the `VaMPy` repository
1935

2036
Start by downloading and navigating to the root directory of `VaMPy` with the following command in your terminal:

0 commit comments

Comments
 (0)