diff --git a/README.md b/README.md index 5ae0eee..9876bb7 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ $ conda install -c conda-forge camelot-py After [installing the dependencies](https://camelot-py.readthedocs.io/en/master/user/install-deps.html) ([tk](https://packages.ubuntu.com/bionic/python/python-tk) and [ghostscript](https://www.ghostscript.com/)), you can also just use pip to install Camelot:
-$ pip install "camelot-py[cv]" +$ pip install "camelot-py[base]"### From the source code @@ -93,7 +93,7 @@ and install Camelot using pip:
$ cd camelot -$ pip install ".[cv]" +$ pip install ".[base]"## Documentation diff --git a/docs/user/install.rst b/docs/user/install.rst index e7bf89e..20208ce 100644 --- a/docs/user/install.rst +++ b/docs/user/install.rst @@ -14,7 +14,7 @@ pip To install Camelot from PyPI using ``pip``, please include the extra ``cv`` requirement as shown:: - $ pip install "camelot-py[cv]" + $ pip install "camelot-py[base]" conda ----- @@ -37,4 +37,4 @@ After :ref:`installing the dependencies