Skip to content

Commit 5287105

Browse files
committed
remove --pre for pip install
1 parent 3262cc8 commit 5287105

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ conda create -n npl-3.11 python=3.11
3939
conda activate npl-3.11
4040

4141
# install from nplinker releases (requiring ~300MB of disk space)
42-
pip install --pre nplinker
42+
pip install nplinker
4343

4444
# install nplinker non-pypi dependencies and databases (~4GB)
4545
install-nplinker-deps

docs/install.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,14 @@ conda create -n npl-3.11 python=3.11 # (1)!
1515
conda activate npl-3.11
1616

1717
# install nplinker package (requiring ~300MB of disk space)
18-
pip install --pre nplinker # (2)!
18+
pip install nplinker
1919

2020
# install nplinker non-pypi dependencies and databases (~4GB)
21-
install-nplinker-deps # (3)!
21+
install-nplinker-deps # (2)!
2222
```
2323

2424
1. A virtual environment is ***required*** to install the non-pypi dependencies. It's recommended to use `conda` to manage python virtual environments. Check [conda documentation](https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html) for installation instructions.
25-
2. NPLinker v2 is still under development and released as [pre-release](https://pypi.org/project/nplinker/#history). To install the pre-release, you need the `--pre` option.
26-
3. Use `which install-nplinker-deps` command to check if the command `install-nplinker-deps` is in the activated python virtual environment. If not, make sure you have activated the virtual environment and/or reinstall the `nplinker` package.
25+
2. Use `which install-nplinker-deps` command to check if the command `install-nplinker-deps` is in the activated python virtual environment. If not, make sure you have activated the virtual environment and/or reinstall the `nplinker` package.
2726

2827
## Install from source code
2928

joss/paper.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ To install NPLinker 2 and its dependencies, users can run the following commands
8484

8585
```bash
8686
# Install the NPLinker package
87-
pip install --pre nplinker
87+
pip install nplinker
8888

8989
# Install non-PyPi dependencies and required databases
9090
install-nplinker-deps

0 commit comments

Comments
 (0)