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

How to install nuage via python pip




nuage - Command line client for manage applications in nuage platform, it belongs to Classifiers:

- License :: OSI Approved :: BSD License

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



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_nuage_env

- Active the virtual environment

test_nuage_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_nuage_env

- Active the virtual environment

source test_nuage_env/bin/active


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

To install nuage on Windows(CMD):

py -m pip install nuage

To install nuage on Unix/macOs:

pip install nuage


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

Example:

pip install nuage==0.1a1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
nuage 0.52011-04-10T23:40:54Windows:

py -m pip install nuage==0.5

Unix/macOs:

pip install nuage==0.5

nuage 0.42010-12-06T06:32:40Windows:

py -m pip install nuage==0.4

Unix/macOs:

pip install nuage==0.4

nuage 0.32010-12-04T15:33:28Windows:

py -m pip install nuage==0.3

Unix/macOs:

pip install nuage==0.3

nuage 0.22010-12-02T20:48:28Windows:

py -m pip install nuage==0.2

Unix/macOs:

pip install nuage==0.2

nuage 0.1d2010-12-02T16:52:06Windows:

py -m pip install nuage==0.1d

Unix/macOs:

pip install nuage==0.1d


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_nuage_downloaded_file>

On Unix/macOs:

pip install <path_to_nuage_downloaded_file>


List distribution:

- nuage-0.1d.tar.gz
- nuage-0.1a1.tar.gz
- nuage-0.1a2.tar.gz
- nuage-0.1b.tar.gz
- nuage-0.1c.tar.gz
- nuage-0.2a.tar.gz
- nuage-0.2.tar.gz
- nuage-0.3.tar.gz
- nuage-0.4a.tar.gz
- nuage-0.4b.tar.gz
- nuage-0.4c.tar.gz
- nuage-0.4.tar.gz
- nuage-0.5.tar.gz


Project link:

- Homepage