Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install sumy via python pip




sumy - Module for automatic summarization of text documents and HTML pages., it belongs to Classifiers:

- Development Status :: 4 - Beta
- Intended Audience :: Education
- License :: OSI Approved :: Apache Software License
- Natural Language :: Chinese (Simplified)
- Natural Language :: Czech
- Programming Language :: Python :: 3.3
- Programming Language :: Python :: 3.4
- Programming Language :: Python :: 3.5
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: CPython
- Topic :: Education
- Topic :: Internet
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Information Analysis
- Topic :: Text Processing
- Topic :: Text Processing :: Filters
- Topic :: Text Processing :: Linguistic
- Topic :: Text Processing :: Markup
- Topic :: Text Processing :: Markup :: HTML

When you know about this project and you want to new install sumy to support your project or you get trouble as ModuleNotFoundError: No module named "sumy" or ImportError: cannot import name "sumy" in your project, let follow this tutorial to install sumy



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_sumy_env

- Active the virtual environment

test_sumy_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_sumy_env

- Active the virtual environment

source test_sumy_env/bin/active


Step 2: OK, now, let flow below content to start the installation sumy

To install sumy on Windows(CMD):

py -m pip install sumy

To install sumy on Unix/macOs:

pip install sumy


Step 3: If you want to install a specific sumy version, add ==<sumy version> to the end command line

Example:

pip install sumy==0.0.1


Please see the version list below table:

VersionReleased dateCommand
sumy 0.10.02022-04-21T21:59:46Windows:

py -m pip install sumy==0.10.0

Unix/macOs:

pip install sumy==0.10.0

sumy 0.9.02021-10-21T17:24:42Windows:

py -m pip install sumy==0.9.0

Unix/macOs:

pip install sumy==0.9.0

sumy 0.8.12019-05-19T14:38:29Windows:

py -m pip install sumy==0.8.1

Unix/macOs:

pip install sumy==0.8.1

sumy 0.8.02019-05-18T19:07:46Windows:

py -m pip install sumy==0.8.0

Unix/macOs:

pip install sumy==0.8.0

sumy 0.7.02017-07-22T16:41:46Windows:

py -m pip install sumy==0.7.0

Unix/macOs:

pip install sumy==0.7.0

sumy 0.6.02017-03-05T12:18:39Windows:

py -m pip install sumy==0.6.0

Unix/macOs:

pip install sumy==0.6.0

sumy 0.5.12016-11-17T11:41:32Windows:

py -m pip install sumy==0.5.1

Unix/macOs:

pip install sumy==0.5.1

sumy 0.5.02016-11-12T16:48:26Windows:

py -m pip install sumy==0.5.0

Unix/macOs:

pip install sumy==0.5.0

sumy 0.4.12016-03-06T18:56:28Windows:

py -m pip install sumy==0.4.1

Unix/macOs:

pip install sumy==0.4.1

sumy 0.4.02015-12-06T21:38:04Windows:

py -m pip install sumy==0.4.0

Unix/macOs:

pip install sumy==0.4.0

sumy 0.3.02014-06-07T13:18:51Windows:

py -m pip install sumy==0.3.0

Unix/macOs:

pip install sumy==0.3.0

sumy 0.2.12014-01-25T12:33:08Windows:

py -m pip install sumy==0.2.1

Unix/macOs:

pip install sumy==0.2.1

sumy 0.2.02014-01-18T16:25:53Windows:

py -m pip install sumy==0.2.0

Unix/macOs:

pip install sumy==0.2.0

sumy 0.1.02013-10-20T12:29:50Windows:

py -m pip install sumy==0.1.0

Unix/macOs:

pip install sumy==0.1.0

sumy 0.0.12013-10-19T17:50:39Windows:

py -m pip install sumy==0.0.1

Unix/macOs:

pip install sumy==0.0.1


Step 4: Otherwise, you can install sumy from local archives:

Download the distribution file from sumy-0.10.0.tar.gz or the specific sumy version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_sumy_downloaded_file>

On Unix/macOs:

pip install <path_to_sumy_downloaded_file>


List distribution:


Project link:

- Homepage