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

How to install pearlcli via python pip




pearlcli - Pearl is a lightweight package manager for automating reproducible environments between different systems (Linux and OSX).It can be used for dotfiles, plugins, programs and any form of code accessible via git., it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Operating System :: MacOS
- Operating System :: POSIX :: Linux
- Topic :: Software Development :: Build Tools
- Topic :: System
- Topic :: System :: Shells
- Topic :: System :: Software Distribution

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



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_pearlcli_env

- Active the virtual environment

test_pearlcli_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_pearlcli_env

- Active the virtual environment

source test_pearlcli_env/bin/active


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

To install pearlcli on Windows(CMD):

py -m pip install pearlcli

To install pearlcli on Unix/macOs:

pip install pearlcli


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

Example:

pip install pearlcli==2.0.0


Please see the version list below table:

VersionReleased dateCommand
pearlcli 2.1.12020-01-14T00:00:57Windows:

py -m pip install pearlcli==2.1.1

Unix/macOs:

pip install pearlcli==2.1.1

pearlcli 2.1.02020-01-12T17:12:18Windows:

py -m pip install pearlcli==2.1.0

Unix/macOs:

pip install pearlcli==2.1.0

pearlcli 2.0.22020-01-11T17:11:58Windows:

py -m pip install pearlcli==2.0.2

Unix/macOs:

pip install pearlcli==2.0.2

pearlcli 2.0.12020-01-11T15:48:04Windows:

py -m pip install pearlcli==2.0.1

Unix/macOs:

pip install pearlcli==2.0.1

pearlcli 2.0.02020-01-10T08:25:41Windows:

py -m pip install pearlcli==2.0.0

Unix/macOs:

pip install pearlcli==2.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pearlcli_downloaded_file>

On Unix/macOs:

pip install <path_to_pearlcli_downloaded_file>


List distribution:


Project link:

- Homepage
- Download