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

How to install plone.portlets via python pip




plone.portlets - An extension of zope.viewlet to support dynamic portlets, it belongs to Classifiers:

- Framework :: Plone
- Framework :: Plone :: 4.3
- Framework :: Plone :: 5.0
- Framework :: Plone :: 5.2
- Framework :: Plone :: Core
- Framework :: Zope :: 4
- License :: OSI Approved :: GNU General Public License v2 (GPLv2)

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



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_plone.portlets_env

- Active the virtual environment

test_plone.portlets_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_plone.portlets_env

- Active the virtual environment

source test_plone.portlets_env/bin/active


Step 2: OK, now, let flow below content to start the installation plone.portlets

To install plone.portlets on Windows(CMD):

py -m pip install plone.portlets

To install plone.portlets on Unix/macOs:

pip install plone.portlets


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

Example:

pip install plone.portlets==1.0b1.1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
plone.portlets 2.3.22020-04-20T23:00:10Windows:

py -m pip install plone.portlets==2.3.2

Unix/macOs:

pip install plone.portlets==2.3.2

plone.portlets 2.3.12019-02-08T13:52:23Windows:

py -m pip install plone.portlets==2.3.1

Unix/macOs:

pip install plone.portlets==2.3.1

plone.portlets 2.32016-11-01T18:36:01Windows:

py -m pip install plone.portlets==2.3

Unix/macOs:

pip install plone.portlets==2.3

plone.portlets 2.2.32016-08-09T16:44:21Windows:

py -m pip install plone.portlets==2.2.3

Unix/macOs:

pip install plone.portlets==2.2.3

plone.portlets 2.2.22016-02-15T08:17:33Windows:

py -m pip install plone.portlets==2.2.2

Unix/macOs:

pip install plone.portlets==2.2.2

plone.portlets 2.2.12016-02-12T22:17:36Windows:

py -m pip install plone.portlets==2.2.1

Unix/macOs:

pip install plone.portlets==2.2.1

plone.portlets 2.22012-10-01T16:01:41Windows:

py -m pip install plone.portlets==2.2

Unix/macOs:

pip install plone.portlets==2.2

plone.portlets 2.12012-07-03T02:06:22Windows:

py -m pip install plone.portlets==2.1

Unix/macOs:

pip install plone.portlets==2.1

plone.portlets 2.0.22011-04-21T13:15:57Windows:

py -m pip install plone.portlets==2.0.2

Unix/macOs:

pip install plone.portlets==2.0.2

plone.portlets 2.0.12011-01-03T15:04:51Windows:

py -m pip install plone.portlets==2.0.1

Unix/macOs:

pip install plone.portlets==2.0.1

plone.portlets 2.02010-07-16T12:11:50Windows:

py -m pip install plone.portlets==2.0

Unix/macOs:

pip install plone.portlets==2.0

plone.portlets 1.22009-06-19T14:20:48Windows:

py -m pip install plone.portlets==1.2

Unix/macOs:

pip install plone.portlets==1.2

plone.portlets 1.1.02008-04-20T18:58:06Windows:

py -m pip install plone.portlets==1.1.0

Unix/macOs:

pip install plone.portlets==1.1.0

plone.portlets 1.0.52008-01-02T23:28:22Windows:

py -m pip install plone.portlets==1.0.5

Unix/macOs:

pip install plone.portlets==1.0.5

plone.portlets 1.0.32007-11-09T00:35:39Windows:

py -m pip install plone.portlets==1.0.3

Unix/macOs:

pip install plone.portlets==1.0.3

plone.portlets 1.0.1.12007-09-10T21:06:57Windows:

py -m pip install plone.portlets==1.0.1.1

Unix/macOs:

pip install plone.portlets==1.0.1.1

plone.portlets 1.02007-08-17T01:33:55Windows:

py -m pip install plone.portlets==1.0

Unix/macOs:

pip install plone.portlets==1.0


Step 4: Otherwise, you can install plone.portlets from local archives:

Download the distribution file from plone.portlets-2.3.2.tar.gz or the specific plone.portlets version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_plone.portlets_downloaded_file>

On Unix/macOs:

pip install <path_to_plone.portlets_downloaded_file>


List distribution:


Project link:

- Homepage