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

How to install pyln-client via python pip




pyln-client - Client library and plugin library for Core Lightning, it belongs to Classifiers:

- License :: Other/Proprietary License
- Programming Language :: Python
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: 3.10

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



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_pyln-client_env

- Active the virtual environment

test_pyln-client_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_pyln-client_env

- Active the virtual environment

source test_pyln-client_env/bin/active


Step 2: OK, now, let flow below content to start the installation pyln-client

To install pyln-client on Windows(CMD):

py -m pip install pyln-client

To install pyln-client on Unix/macOs:

pip install pyln-client


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

Example:

pip install pyln-client==0.0.7.3


Please see the version list below table:

VersionReleased dateCommand
pyln-client 0.11.12022-06-22T13:03:17Windows:

py -m pip install pyln-client==0.11.1

Unix/macOs:

pip install pyln-client==0.11.1

pyln-client 0.10.2.post32022-03-19T17:08:02Windows:

py -m pip install pyln-client==0.10.2.post3

Unix/macOs:

pip install pyln-client==0.10.2.post3

pyln-client 0.10.2.post12022-03-15T09:18:23Windows:

py -m pip install pyln-client==0.10.2.post1

Unix/macOs:

pip install pyln-client==0.10.2.post1

pyln-client 0.10.2.post0 yanked2021-12-16T13:51:52Windows:

py -m pip install pyln-client==0.10.2.post0                                                                          yanked

Unix/macOs:

pip install pyln-client==0.10.2.post0                                                                          yanked

pyln-client 0.10.12021-08-10T01:04:23Windows:

py -m pip install pyln-client==0.10.1

Unix/macOs:

pip install pyln-client==0.10.1

pyln-client 0.10.02021-04-13T08:16:42Windows:

py -m pip install pyln-client==0.10.0

Unix/macOs:

pip install pyln-client==0.10.0

pyln-client 0.9.32021-01-27T12:49:02Windows:

py -m pip install pyln-client==0.9.3

Unix/macOs:

pip install pyln-client==0.9.3

pyln-client 0.9.22020-12-11T12:51:07Windows:

py -m pip install pyln-client==0.9.2

Unix/macOs:

pip install pyln-client==0.9.2

pyln-client 0.8.22020-05-09T12:50:34Windows:

py -m pip install pyln-client==0.8.2

Unix/macOs:

pip install pyln-client==0.8.2

pyln-client 0.8.02019-12-31T15:55:43Windows:

py -m pip install pyln-client==0.8.0

Unix/macOs:

pip install pyln-client==0.8.0

pyln-client 0.7.32019-11-22T14:35:59Windows:

py -m pip install pyln-client==0.7.3

Unix/macOs:

pip install pyln-client==0.7.3

pyln-client 0.0.7.32019-09-03T21:40:11Windows:

py -m pip install pyln-client==0.0.7.3

Unix/macOs:

pip install pyln-client==0.0.7.3


Step 4: Otherwise, you can install pyln-client from local archives:

Download the distribution file from pyln-client-0.11.1.tar.gz or the specific pyln-client version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pyln-client_downloaded_file>

On Unix/macOs:

pip install <path_to_pyln-client_downloaded_file>


List distribution:


Project link: