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
Copy file name to clipboardexpand all lines: docs/installation.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ python 3.6+ with pip is required to install condax.
11
11
Assuming you have `pip` installed for python3, run:
12
12
```
13
13
python3 -m pip install --user condax
14
-
python3 -m pipx ensurepath
14
+
python3 -m condax ensure-path
15
15
```
16
16
17
17
## Install using conda
@@ -21,23 +21,23 @@ Alternatively you can install condax using conda (it just feels right doing it t
21
21
conda install -c conda-forge condax
22
22
```
23
23
24
-
## Upgrade pipx
24
+
## Upgrade condax
25
25
```
26
-
python3 -m pip install -U pipx
26
+
python3 -m pip install -U condax
27
27
```
28
28
29
29
### Installation Options
30
-
pipx's default binary location is `~/.local/bin`. This can be overriden with the environment variable `PIPX_BIN_DIR`.
30
+
condax's default binary location is `~/.local/bin`. This can be overriden using `link_destination` in `~/.condaxrc`.
31
31
32
-
pipx's default virtual environment location is `~/.local/pipx`. This can be overridden with the environment variable `PIPX_HOME`.
32
+
condax's default conda environment location is `~/.local/condax`. This can be overriden using `prefix_path` in `~/.condaxrc`.
33
33
34
34
## Shell Completion
35
35
You can easily get your shell's tab completions working by following instructions printed with this command:
36
36
```
37
37
pipx completions
38
38
```
39
39
40
-
## Install pipx Development Versions
40
+
## Install condax Development Versions
41
41
New versions of pipx are published as beta or release candidates. These versions look something like `0.13.0b1`, where `b1` signifies the first beta release of version 0.13. These releases can be tested with
0 commit comments