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

How to install NucleusUtils via python pip




NucleusUtils - Collection of Nucleus utils, it belongs to Classifiers:

- Intended Audience :: Education
- Intended Audience :: System Administrators

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



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_NucleusUtils_env

- Active the virtual environment

test_NucleusUtils_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_NucleusUtils_env

- Active the virtual environment

source test_NucleusUtils_env/bin/active


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

To install NucleusUtils on Windows(CMD):

py -m pip install NucleusUtils

To install NucleusUtils on Unix/macOs:

pip install NucleusUtils


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

Example:

pip install NucleusUtils==0.1.9b11                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand

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

Download the distribution file from NucleusUtils-0.1.11b1.tar.gz or the specific NucleusUtils version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_NucleusUtils_downloaded_file>

On Unix/macOs:

pip install <path_to_NucleusUtils_downloaded_file>


List distribution:

- NucleusUtils-0.1.9b11-py3-none-any.whl
- NucleusUtils-0.1.9b11.tar.gz
- NucleusUtils-0.1.9rc4-py3-none-any.whl
- NucleusUtils-0.1.9rc4.tar.gz
- NucleusUtils-0.1.9rc5-py3-none-any.whl
- NucleusUtils-0.1.9rc5.tar.gz
- NucleusUtils-0.1.9rc6-py3-none-any.whl
- NucleusUtils-0.1.9rc6.tar.gz
- NucleusUtils-0.1.9rc7-py3-none-any.whl
- NucleusUtils-0.1.9rc7.tar.gz
- NucleusUtils-0.1.9rc8-py3-none-any.whl
- NucleusUtils-0.1.9rc8.tar.gz
- NucleusUtils-0.1.9rc9-py3-none-any.whl
- NucleusUtils-0.1.9rc9.tar.gz
- NucleusUtils-0.1.9rc10-py3-none-any.whl
- NucleusUtils-0.1.9rc10.tar.gz
- NucleusUtils-0.1.10b2-py3-none-any.whl
- NucleusUtils-0.1.10b2.tar.gz
- NucleusUtils-0.1.10b11-py3-none-any.whl
- NucleusUtils-0.1.10b11.tar.gz
- NucleusUtils-0.1.10b12-py3-none-any.whl
- NucleusUtils-0.1.10b12.tar.gz
- NucleusUtils-0.1.10b13-py3-none-any.whl
- NucleusUtils-0.1.10b13.tar.gz
- NucleusUtils-0.1.10b14-py3-none-any.whl
- NucleusUtils-0.1.10b14.tar.gz
- NucleusUtils-0.1.10b15-py3-none-any.whl
- NucleusUtils-0.1.10b15.tar.gz
- NucleusUtils-0.1.10b16-py3-none-any.whl
- NucleusUtils-0.1.10b16.tar.gz
- NucleusUtils-0.1.10b17-py3-none-any.whl
- NucleusUtils-0.1.10b17.tar.gz
- NucleusUtils-0.1.11b0-py3-none-any.whl
- NucleusUtils-0.1.11b0.tar.gz
- NucleusUtils-0.1.11b1-py3-none-any.whl
- NucleusUtils-0.1.11b1.tar.gz


Project link:

- Homepage