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

How to install nuke via python pip




nuke - Command line tool for nuking a directory , it belongs to Classifiers:

- License :: OSI Approved :: BSD License
- Operating System :: MacOS
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Operating System :: Unix
- Topic :: Software Development :: Libraries :: Python Modules

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



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_nuke_env

- Active the virtual environment

test_nuke_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_nuke_env

- Active the virtual environment

source test_nuke_env/bin/active


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

To install nuke on Windows(CMD):

py -m pip install nuke

To install nuke on Unix/macOs:

pip install nuke


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

Example:

pip install nuke==2.1.0


Please see the version list below table:

VersionReleased dateCommand
nuke 2.5.02021-03-25T17:13:52Windows:

py -m pip install nuke==2.5.0

Unix/macOs:

pip install nuke==2.5.0

nuke 2.4.52020-07-15T17:51:06Windows:

py -m pip install nuke==2.4.5

Unix/macOs:

pip install nuke==2.4.5

nuke 2.4.42020-07-15T16:20:38Windows:

py -m pip install nuke==2.4.4

Unix/macOs:

pip install nuke==2.4.4

nuke 2.4.32020-07-15T16:18:05Windows:

py -m pip install nuke==2.4.3

Unix/macOs:

pip install nuke==2.4.3

nuke 2.4.22020-02-05T02:15:21Windows:

py -m pip install nuke==2.4.2

Unix/macOs:

pip install nuke==2.4.2

nuke 2.4.12019-07-18T19:19:37Windows:

py -m pip install nuke==2.4.1

Unix/macOs:

pip install nuke==2.4.1

nuke 2.4.02019-07-18T19:01:29Windows:

py -m pip install nuke==2.4.0

Unix/macOs:

pip install nuke==2.4.0

nuke 2.2.52019-05-16T20:08:34Windows:

py -m pip install nuke==2.2.5

Unix/macOs:

pip install nuke==2.2.5

nuke 2.2.42018-03-21T03:41:53Windows:

py -m pip install nuke==2.2.4

Unix/macOs:

pip install nuke==2.2.4

nuke 2.2.32018-03-21T03:37:53Windows:

py -m pip install nuke==2.2.3

Unix/macOs:

pip install nuke==2.2.3

nuke 2.2.22018-03-02T18:26:12Windows:

py -m pip install nuke==2.2.2

Unix/macOs:

pip install nuke==2.2.2

nuke 2.2.12017-12-23T14:00:11Windows:

py -m pip install nuke==2.2.1

Unix/macOs:

pip install nuke==2.2.1

nuke 2.2.02017-08-05T00:14:22Windows:

py -m pip install nuke==2.2.0

Unix/macOs:

pip install nuke==2.2.0

nuke 2.1.12017-08-03T18:43:00Windows:

py -m pip install nuke==2.1.1

Unix/macOs:

pip install nuke==2.1.1

nuke 2.1.02017-08-03T06:06:25Windows:

py -m pip install nuke==2.1.0

Unix/macOs:

pip install nuke==2.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_nuke_downloaded_file>

On Unix/macOs:

pip install <path_to_nuke_downloaded_file>


List distribution:

- nuke-2.1.0.tar.gz
- nuke-2.1.1.tar.gz
- nuke-2.2.0.tar.gz
- nuke-2.2.1-py3.6.egg
- nuke-2.2.1.tar.gz
- nuke-2.2.2.tar.gz
- nuke-2.2.3.tar.gz
- nuke-2.2.4.tar.gz
- nuke-2.2.5.tar.gz
- nuke-2.4.0-py2.py3-none-any.whl
- nuke-2.4.0.tar.gz
- nuke-2.4.1-py2.py3-none-any.whl
- nuke-2.4.1.tar.gz
- nuke-2.4.2-py2.py3-none-any.whl
- nuke-2.4.2.tar.gz
- nuke-2.4.3-py2.py3-none-any.whl
- nuke-2.4.3.tar.gz
- nuke-2.4.4-py2.py3-none-any.whl
- nuke-2.4.4.tar.gz
- nuke-2.4.5-py2.py3-none-any.whl
- nuke-2.4.5.tar.gz
- nuke-2.5.0-py2.py3-none-any.whl
- nuke-2.5.0.tar.gz
- nuke-2.5.1-py2.py3-none-any.whl
- nuke-2.5.1.tar.gz


Project link:

- Homepage