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

How to install ultra_config via python pip




ultra_config - An extendable configuration that enables you to configure your application via python modules, config files, environment variables and more!, it belongs to Classifiers:

- Development Status :: 2 - Pre-Alpha
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 3.3

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



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_ultra_config_env

- Active the virtual environment

test_ultra_config_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_ultra_config_env

- Active the virtual environment

source test_ultra_config_env/bin/active


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

To install ultra_config on Windows(CMD):

py -m pip install ultra_config

To install ultra_config on Unix/macOs:

pip install ultra_config


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

Example:

pip install ultra_config==0.1.0


Please see the version list below table:

VersionReleased dateCommand
ultra_config 0.6.32017-01-05T20:24:24Windows:

py -m pip install ultra_config==0.6.3

Unix/macOs:

pip install ultra_config==0.6.3

ultra_config 0.6.22017-01-05T18:25:06Windows:

py -m pip install ultra_config==0.6.2

Unix/macOs:

pip install ultra_config==0.6.2

ultra_config 0.6.12017-01-05T18:23:57Windows:

py -m pip install ultra_config==0.6.1

Unix/macOs:

pip install ultra_config==0.6.1

ultra_config 0.6.02017-01-05T16:57:15Windows:

py -m pip install ultra_config==0.6.0

Unix/macOs:

pip install ultra_config==0.6.0

ultra_config 0.5.12017-01-04T17:10:22Windows:

py -m pip install ultra_config==0.5.1

Unix/macOs:

pip install ultra_config==0.5.1

ultra_config 0.5.02017-01-04T17:10:02Windows:

py -m pip install ultra_config==0.5.0

Unix/macOs:

pip install ultra_config==0.5.0

ultra_config 0.4.12016-08-03T06:31:34Windows:

py -m pip install ultra_config==0.4.1

Unix/macOs:

pip install ultra_config==0.4.1

ultra_config 0.4.02016-08-03T01:43:24Windows:

py -m pip install ultra_config==0.4.0

Unix/macOs:

pip install ultra_config==0.4.0

ultra_config 0.3.12016-08-01T20:00:07Windows:

py -m pip install ultra_config==0.3.1

Unix/macOs:

pip install ultra_config==0.3.1

ultra_config 0.3.02016-08-01T19:42:53Windows:

py -m pip install ultra_config==0.3.0

Unix/macOs:

pip install ultra_config==0.3.0

ultra_config 0.2.12016-08-01T14:37:13Windows:

py -m pip install ultra_config==0.2.1

Unix/macOs:

pip install ultra_config==0.2.1

ultra_config 0.2.02016-08-01T14:17:36Windows:

py -m pip install ultra_config==0.2.0

Unix/macOs:

pip install ultra_config==0.2.0

ultra_config 0.1.92016-07-26T20:20:10Windows:

py -m pip install ultra_config==0.1.9

Unix/macOs:

pip install ultra_config==0.1.9

ultra_config 0.1.72016-07-25T20:11:36Windows:

py -m pip install ultra_config==0.1.7

Unix/macOs:

pip install ultra_config==0.1.7

ultra_config 0.1.62016-07-25T18:48:32Windows:

py -m pip install ultra_config==0.1.6

Unix/macOs:

pip install ultra_config==0.1.6

ultra_config 0.1.42016-07-22T18:42:52Windows:

py -m pip install ultra_config==0.1.4

Unix/macOs:

pip install ultra_config==0.1.4

ultra_config 0.1.32016-07-22T18:31:36Windows:

py -m pip install ultra_config==0.1.3

Unix/macOs:

pip install ultra_config==0.1.3

ultra_config 0.1.22016-07-22T18:21:33Windows:

py -m pip install ultra_config==0.1.2

Unix/macOs:

pip install ultra_config==0.1.2

ultra_config 0.1.02016-07-22T17:31:58Windows:

py -m pip install ultra_config==0.1.0

Unix/macOs:

pip install ultra_config==0.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_ultra_config_downloaded_file>

On Unix/macOs:

pip install <path_to_ultra_config_downloaded_file>


List distribution:


Project link:

- Homepage