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

How to install etcmaint via python pip




etcmaint - An Arch Linux tool based on git for the maintenance of /etc files., it belongs to Classifiers:

- Topic :: System
- Topic :: System :: Software Distribution

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



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_etcmaint_env

- Active the virtual environment

test_etcmaint_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_etcmaint_env

- Active the virtual environment

source test_etcmaint_env/bin/active


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

To install etcmaint on Windows(CMD):

py -m pip install etcmaint

To install etcmaint on Unix/macOs:

pip install etcmaint


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

Example:

pip install etcmaint==0.3


Please see the version list below table:

VersionReleased dateCommand
etcmaint 0.82021-08-03T14:26:09Windows:

py -m pip install etcmaint==0.8

Unix/macOs:

pip install etcmaint==0.8

etcmaint 0.72020-01-14T20:37:49Windows:

py -m pip install etcmaint==0.7

Unix/macOs:

pip install etcmaint==0.7

etcmaint 0.62019-12-04T19:38:40Windows:

py -m pip install etcmaint==0.6

Unix/macOs:

pip install etcmaint==0.6

etcmaint 0.52019-03-02T16:12:56Windows:

py -m pip install etcmaint==0.5

Unix/macOs:

pip install etcmaint==0.5

etcmaint 0.42019-01-31T15:42:01Windows:

py -m pip install etcmaint==0.4

Unix/macOs:

pip install etcmaint==0.4

etcmaint 0.32019-01-08T13:03:34Windows:

py -m pip install etcmaint==0.3

Unix/macOs:

pip install etcmaint==0.3


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_etcmaint_downloaded_file>

On Unix/macOs:

pip install <path_to_etcmaint_downloaded_file>


List distribution:

- etcmaint-0.3-py3-none-any.whl (python version >=3.6)
- etcmaint-0.3.tar.gz (python version >=3.6)
- etcmaint-0.4-py3-none-any.whl (python version >=3.6)
- etcmaint-0.4.tar.gz (python version >=3.6)
- etcmaint-0.5-py3-none-any.whl (python version >=3.6)
- etcmaint-0.5.tar.gz (python version >=3.6)
- etcmaint-0.6-py3-none-any.whl (python version >=3.6)
- etcmaint-0.6.tar.gz (python version >=3.6)
- etcmaint-0.7-py3-none-any.whl (python version >=3.6)
- etcmaint-0.7.tar.gz (python version >=3.6)
- etcmaint-0.8-py3-none-any.whl (python version >=3.6)
- etcmaint-0.8.tar.gz (python version >=3.6)


Project link:

- Homepage
- Documentation