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

How to install XBRLi-converter via python pip




XBRLi-converter - Convert XBRLi documents into simple XBRL, it belongs to Classifiers:

- License :: OSI Approved :: MIT License
- Operating System :: OS Independent

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



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_XBRLi-converter_env

- Active the virtual environment

test_XBRLi-converter_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_XBRLi-converter_env

- Active the virtual environment

source test_XBRLi-converter_env/bin/active


Step 2: OK, now, let flow below content to start the installation XBRLi-converter

To install XBRLi-converter on Windows(CMD):

py -m pip install XBRLi-converter

To install XBRLi-converter on Unix/macOs:

pip install XBRLi-converter


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

Example:

pip install XBRLi-converter==1.0                                                                          yanked


Please see the version list below table:

VersionReleased dateCommand
XBRLi-converter 1.42022-08-11T13:55:19Windows:

py -m pip install XBRLi-converter==1.4

Unix/macOs:

pip install XBRLi-converter==1.4

XBRLi-converter 1.32022-08-11T13:41:18Windows:

py -m pip install XBRLi-converter==1.3

Unix/macOs:

pip install XBRLi-converter==1.3

XBRLi-converter 1.22021-05-01T15:46:47Windows:

py -m pip install XBRLi-converter==1.2

Unix/macOs:

pip install XBRLi-converter==1.2

XBRLi-converter 1.12021-03-14T02:48:17Windows:

py -m pip install XBRLi-converter==1.1

Unix/macOs:

pip install XBRLi-converter==1.1

XBRLi-converter 1.0 yanked2021-03-12T00:36:04Windows:

py -m pip install XBRLi-converter==1.0                                                                          yanked

Unix/macOs:

pip install XBRLi-converter==1.0                                                                          yanked


Step 4: Otherwise, you can install XBRLi-converter from local archives:

Download the distribution file from XBRLi_converter-1.4.tar.gz or the specific XBRLi-converter version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_XBRLi-converter_downloaded_file>

On Unix/macOs:

pip install <path_to_XBRLi-converter_downloaded_file>


List distribution:


Project link:

- Homepage