File tree Expand file tree Collapse file tree 4 files changed +24
-6
lines changed Expand file tree Collapse file tree 4 files changed +24
-6
lines changed Original file line number Diff line number Diff line change @@ -39,18 +39,34 @@ $$ -->
39
39
40
40
## Usage
41
41
42
+ Please use mamba for fast download and installation
43
+
44
+ ``` sh
45
+ conda install mamba -n base -c conda-forge
46
+ ```
47
+
42
48
### Local Install
43
49
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
+ ```
45
61
46
62
``` bash
47
- conda env create --name pydockrmsd --file condaenv/requirement.yml
63
+ mamba env create --name pydockrmsd --file condaenv/requirement.yml
48
64
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
50
66
./scripts/install.sh
51
67
```
52
68
53
- ### Requirement
69
+ ### Pypi install
54
70
55
71
Build Requirement
56
72
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2021 Barre kevin - All rights reserved.
1
2
channels :
2
3
- defaults
3
4
dependencies :
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2021 Barre kevin - All rights reserved.
1
2
channels :
2
3
- defaults
3
4
- conda-forge
@@ -9,4 +10,3 @@ dependencies:
9
10
- pip
10
11
- pip :
11
12
- pyarrow
12
- - table
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
1
2
current_dir=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " > /dev/null 2>&1 && pwd ) "
2
3
. " $current_dir /info.sh" && \
3
4
# python -m build . && \
@@ -8,4 +9,4 @@ pip install --force dist/pydockrmsd-${version}-cp38-cp38-linux_x86_64.whl && \
8
9
printf " pydockrmsd " && \
9
10
python -c " import pydockrmsd; print(pydockrmsd.__version__, end='');" && \
10
11
echo " correctly installed" ;
11
- # rm -r build/
12
+ # rm -r build/
You can’t perform that action at this time.
0 commit comments