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

How to install EditorConfig via python pip




EditorConfig - EditorConfig File Locator and Interpreter for Python, it belongs to Classifiers:

- License :: OSI Approved
- License :: OSI Approved :: Python Software Foundation License
- Operating System :: OS Independent
- Programming Language :: Python
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3.5
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: PyPy

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



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_EditorConfig_env

- Active the virtual environment

test_EditorConfig_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_EditorConfig_env

- Active the virtual environment

source test_EditorConfig_env/bin/active


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

To install EditorConfig on Windows(CMD):

py -m pip install EditorConfig

To install EditorConfig on Unix/macOs:

pip install EditorConfig


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

Example:

pip install EditorConfig==0.10.0


Please see the version list below table:

VersionReleased dateCommand
EditorConfig 0.12.32020-12-23T04:22:49Windows:

py -m pip install EditorConfig==0.12.3

Unix/macOs:

pip install EditorConfig==0.12.3

EditorConfig 0.12.22018-04-18T05:45:29Windows:

py -m pip install EditorConfig==0.12.2

Unix/macOs:

pip install EditorConfig==0.12.2

EditorConfig 0.12.12016-08-29T15:52:25Windows:

py -m pip install EditorConfig==0.12.1

Unix/macOs:

pip install EditorConfig==0.12.1

EditorConfig 0.12.02014-10-26T05:33:16Windows:

py -m pip install EditorConfig==0.12.0

Unix/macOs:

pip install EditorConfig==0.12.0

EditorConfig 0.11.42014-04-02T00:34:10Windows:

py -m pip install EditorConfig==0.11.4

Unix/macOs:

pip install EditorConfig==0.11.4

EditorConfig 0.11.32013-03-24T07:02:14Windows:

py -m pip install EditorConfig==0.11.3

Unix/macOs:

pip install EditorConfig==0.11.3

EditorConfig 0.11.22013-03-19T01:37:40Windows:

py -m pip install EditorConfig==0.11.2

Unix/macOs:

pip install EditorConfig==0.11.2

EditorConfig 0.11.12013-03-13T18:21:14Windows:

py -m pip install EditorConfig==0.11.1

Unix/macOs:

pip install EditorConfig==0.11.1

EditorConfig 0.11.02013-03-11T07:15:16Windows:

py -m pip install EditorConfig==0.11.0

Unix/macOs:

pip install EditorConfig==0.11.0

EditorConfig 0.10.12012-10-18T23:40:04Windows:

py -m pip install EditorConfig==0.10.1

Unix/macOs:

pip install EditorConfig==0.10.1

EditorConfig 0.10.02012-10-18T23:35:15Windows:

py -m pip install EditorConfig==0.10.0

Unix/macOs:

pip install EditorConfig==0.10.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_EditorConfig_downloaded_file>

On Unix/macOs:

pip install <path_to_EditorConfig_downloaded_file>


List distribution:

- EditorConfig-0.10.0.tar.gz
- EditorConfig-0.10.1.tar.gz
- EditorConfig-0.11.0.tar.gz
- EditorConfig-0.11.1.tar.gz
- EditorConfig-0.11.2.tar.gz
- EditorConfig-0.11.3.tar.gz
- EditorConfig-0.11.4.tar.gz
- EditorConfig-0.12.0.tar.gz
- EditorConfig-0.12.1-py2-none-any.whl
- EditorConfig-0.12.1-py3-none-any.whl
- EditorConfig-0.12.1.tar.gz
- EditorConfig-0.12.2-py2-none-any.whl
- EditorConfig-0.12.2.tar.gz
- EditorConfig-0.12.3-py3-none-any.whl
- EditorConfig-0.12.3.tar.gz


Project link:

- Homepage