Skip to content

Commit 0da5813

Browse files
committed
Merge branch 'main' of github.com:neudinger/pyDockRMSD into main
2 parents 3b2e297 + ed25119 commit 0da5813

File tree

4 files changed

+24
-6
lines changed

4 files changed

+24
-6
lines changed

README.md

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,34 @@ $$ -->
3939

4040
## Usage
4141

42+
Please use mamba for fast download and installation
43+
44+
```sh
45+
conda install mamba -n base -c conda-forge
46+
```
47+
4248
### Local Install
4349

44-
Linux only:
50+
*NIX systems only:
51+
Linux and MacOS
52+
53+
Remove all previous pydockrmsd installation
54+
55+
> If you have MacOS with apple silicon 'M' processor, please use manual installation.
56+
> Github Action cannot handle apple silicon yet
57+
58+
```bash
59+
pip uninstall pydockrmsd
60+
```
4561

4662
```bash
47-
conda env create --name pydockrmsd --file condaenv/requirement.yml
63+
mamba env create --name pydockrmsd --file condaenv/requirement.yml
4864
conda activate pydockrmsd
49-
conda env update --name pydockrmsd --file condaenv/ci-cd.yml
65+
mamba env update --name pydockrmsd --file condaenv/ci-cd.yml --prune
5066
./scripts/install.sh
5167
```
5268

53-
### Requirement
69+
### Pypi install
5470

5571
Build Requirement
5672

condaenv/ci-cd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright (c) 2021 Barre kevin - All rights reserved.
12
channels:
23
- defaults
34
dependencies:

condaenv/requirement.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright (c) 2021 Barre kevin - All rights reserved.
12
channels:
23
- defaults
34
- conda-forge
@@ -9,4 +10,3 @@ dependencies:
910
- pip
1011
- pip:
1112
- pyarrow
12-
- table

scripts/install.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env bash
12
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
23
. "$current_dir/info.sh" && \
34
# python -m build . && \
@@ -8,4 +9,4 @@ pip install --force dist/pydockrmsd-${version}-cp38-cp38-linux_x86_64.whl && \
89
printf "pydockrmsd " && \
910
python -c "import pydockrmsd; print(pydockrmsd.__version__, end='');" && \
1011
echo " correctly installed";
11-
# rm -r build/
12+
# rm -r build/

0 commit comments

Comments
 (0)