1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
# Installation Instructions
`cmd2` works on :simple-linux: Linux, :simple-apple: macOS, and :fontawesome-brands-windows:
Windows. It requires Python 3.10 or higher, [pip](https://pypi.org/project/pip), and
[setuptools](https://pypi.org/project/setuptools). If you've got all that, then you can just:
```shell
$ pip install cmd2
```
!!! note
Depending on how and where you have installed Python on your system and on what OS you are using, you may need to have administrator or root privileges to install Python packages. If this is the case, take the necessary steps required to run the commands in this section as root/admin, e.g.: on most Linux or Mac systems, you can precede them with `sudo`:
```shell
$ sudo pip install <package_name>
```
!!! info
You can also use an alternative Python package manager such as :simple-astral: [uv](https://github.com/astral-sh/uv), but doing so is beyond the scope of this installation guide. The `cmd2` developers love and highly recommend `uv` and use it for the development of `cmd2` itself. But chances are if you are a sophisticated enough Python developer to be using `uv`, you don't need us to tell you how to use it :smile:
## Prerequisites
If you have Python >=3.10 installed from [python.org](https://www.python.org), you will already have
[pip](https://pypi.org/project/pip) and [setuptools](https://pypi.org/project/setuptools), but may
need to upgrade to the latest versions:
On Linux or OS X:
```shell
$ pip install -U pip setuptools
```
On Windows:
```shell
C:\> python -m pip install -U pip setuptools
```
## Install from PyPI {: #pip_install }
[pip](https://pypi.org/project/pip) is the recommended installer. Installing packages from
:simple-pypi: [PyPI](https://pypi.org) with pip is easy:
```shell
$ pip install cmd2
```
This will install the required 3rd-party dependencies, if necessary.
## Install from GitHub {: #github }
The latest version of `cmd2` can be installed directly from the main branch on :simple-github:
GitHub using [pip](https://pypi.org/project/pip):
```shell
$ pip install -U git+git://github.com/python-cmd2/cmd2.git
```
## Install from Debian or Ubuntu repos
We recommend installing from [pip](https://pypi.org/project/pip), but if you wish to install from
:simple-debian: Debian or :simple-ubuntu: Ubuntu repos this can be done with apt-get.
For Python 3:
$ sudo apt-get install python3-cmd2
This will also install the required 3rd-party dependencies.
!!! warning
Versions of `cmd2` before 2.0.0 should be considered to be of unstable "beta" quality and should not be relied upon for production use. If you cannot get a version >= 2.0.0 from your OS repository, then we recommend installing from either PyPI or GitHub - see [Pip Install](installation.md#pip_install) or [Install from GitHub](installation.md#github).
## Upgrading cmd2
Upgrade an already installed `cmd2` to the latest version from [PyPI](https://pypi.org):
pip install -U cmd2
This will upgrade to the newest stable version of `cmd2` and will also upgrade any dependencies if
necessary.
## Uninstalling cmd2
If you wish to permanently uninstall `cmd2`, this can also easily be done with
[pip](https://pypi.org/project/pip):
$ pip uninstall cmd2
## readline Considerations
`cmd2` heavily relies on Python's built-in
[readline](https://docs.python.org/3/library/readline.html) module for its tab completion
capabilities. Tab completion for `cmd2` applications is only tested against :simple-gnu:
[GNU Readline](https://tiswww.case.edu/php/chet/readline/rltop.html) or libraries fully compatible
with it. It does not work properly with the :simple-netbsd: NetBSD
[Editline](http://thrysoee.dk/editline/) library (`libedit`) which is similar, but not identical to
GNU Readline. `cmd2` will disable all tab-completion support if an incompatible version of
`readline` is found.
When installed using `pip`, `uv`, or similar Python packaging tool on either `macOS` or `Windows`,
`cmd2` will automatically install a compatible version of readline.
Most Linux operating systems come with a compatible version of readline. However, if you are using a
tool like `uv` to install Python on your system and configure a virtual environment, `uv` installed
versions of Python come with `libedit`. If you are using `cmd2` on Linux with a version of Python
installed via `uv`, you will likely need to manually add the `gnureadline` Python module to your
`uv` virtual environment.
```sh
uv pip install gnureadline
```
macOS comes with the [libedit](http://thrysoee.dk/editline/) library which is similar, but not
identical, to GNU Readline. Tab completion for `cmd2` applications is only tested against GNU
Readline. In this case you just need to install the `gnureadline` Python package which is statically
linked against GNU Readline:
```shell
$ pip install -U gnureadline
```
|