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

How to install collective.recaptcha via python pip




collective.recaptcha - Wraps the recaptcha-client library to provide a drop-in replacement for collective.captcha., it belongs to Classifiers:

- Framework :: Plone
- Framework :: Plone :: 4.2
- Framework :: Plone :: 4.3
- Framework :: Plone :: 5.0
- Framework :: Plone :: Addon
- License :: OSI Approved :: GNU General Public License v2 (GPLv2)

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



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_collective.recaptcha_env

- Active the virtual environment

test_collective.recaptcha_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_collective.recaptcha_env

- Active the virtual environment

source test_collective.recaptcha_env/bin/active


Step 2: OK, now, let flow below content to start the installation collective.recaptcha

To install collective.recaptcha on Windows(CMD):

py -m pip install collective.recaptcha

To install collective.recaptcha on Unix/macOs:

pip install collective.recaptcha


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

Example:

pip install collective.recaptcha==1.0b1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
collective.recaptcha 2.1.22022-07-26T12:42:31Windows:

py -m pip install collective.recaptcha==2.1.2

Unix/macOs:

pip install collective.recaptcha==2.1.2

collective.recaptcha 2.1.12022-07-21T15:08:41Windows:

py -m pip install collective.recaptcha==2.1.1

Unix/macOs:

pip install collective.recaptcha==2.1.1

collective.recaptcha 2.1.02017-12-04T20:43:54Windows:

py -m pip install collective.recaptcha==2.1.0

Unix/macOs:

pip install collective.recaptcha==2.1.0

collective.recaptcha 2.0.02016-03-06T23:42:06Windows:

py -m pip install collective.recaptcha==2.0.0

Unix/macOs:

pip install collective.recaptcha==2.0.0

collective.recaptcha 1.1.52014-05-07T14:51:45Windows:

py -m pip install collective.recaptcha==1.1.5

Unix/macOs:

pip install collective.recaptcha==1.1.5

collective.recaptcha 1.1.42013-04-09T08:04:18Windows:

py -m pip install collective.recaptcha==1.1.4

Unix/macOs:

pip install collective.recaptcha==1.1.4

collective.recaptcha 1.1.32011-08-19T22:57:24Windows:

py -m pip install collective.recaptcha==1.1.3

Unix/macOs:

pip install collective.recaptcha==1.1.3

collective.recaptcha 1.1.22011-05-17T15:33:14Windows:

py -m pip install collective.recaptcha==1.1.2

Unix/macOs:

pip install collective.recaptcha==1.1.2

collective.recaptcha 1.1.12011-02-15T21:18:25Windows:

py -m pip install collective.recaptcha==1.1.1

Unix/macOs:

pip install collective.recaptcha==1.1.1

collective.recaptcha 1.12010-11-18T22:03:53Windows:

py -m pip install collective.recaptcha==1.1

Unix/macOs:

pip install collective.recaptcha==1.1

collective.recaptcha 1.0.12009-08-06T01:27:48Windows:

py -m pip install collective.recaptcha==1.0.1

Unix/macOs:

pip install collective.recaptcha==1.0.1

collective.recaptcha 1.02009-05-04T20:06:22Windows:

py -m pip install collective.recaptcha==1.0

Unix/macOs:

pip install collective.recaptcha==1.0


Step 4: Otherwise, you can install collective.recaptcha from local archives:

Download the distribution file from collective.recaptcha-2.1.2.tar.gz or the specific collective.recaptcha version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_collective.recaptcha_downloaded_file>

On Unix/macOs:

pip install <path_to_collective.recaptcha_downloaded_file>


List distribution:

- collective.recaptcha-1.0b1-py2.4.egg
- collective.recaptcha-1.0b1.tar.gz
- collective.recaptcha-1.0b2-py2.4.egg
- collective.recaptcha-1.0b2.tar.gz
- collective.recaptcha-1.0.tar.gz
- collective.recaptcha-1.0.1.tar.gz
- collective.recaptcha-1.1.zip
- collective.recaptcha-1.1.1.zip
- collective.recaptcha-1.1.2.zip
- collective.recaptcha-1.1.3.zip
- collective.recaptcha-1.1.4.tar.gz
- collective.recaptcha-1.1.5.zip
- collective.recaptcha-2.0.0.zip
- collective.recaptcha-2.1.0.tar.gz
- collective.recaptcha-2.1.1.tar.gz (python version ==2.7)
- collective.recaptcha-2.1.2.tar.gz (python version ==2.7)


Project link:

- Homepage
- PyPI
- Source
- Tracker