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

How to install deblur via python pip




deblur - Deblur, it belongs to Classifiers:

- License :: OSI Approved :: BSD License
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: CPython
- Topic :: Scientific/Engineering :: Bio-Informatics
- Topic :: Software Development :: Libraries :: Application Frameworks

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



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_deblur_env

- Active the virtual environment

test_deblur_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_deblur_env

- Active the virtual environment

source test_deblur_env/bin/active


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

To install deblur on Windows(CMD):

py -m pip install deblur

To install deblur on Unix/macOs:

pip install deblur


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

Example:

pip install deblur==0.0.1.dev0                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
deblur 1.1.02018-09-14T18:16:29Windows:

py -m pip install deblur==1.1.0

Unix/macOs:

pip install deblur==1.1.0

deblur 1.0.42018-01-30T18:00:58Windows:

py -m pip install deblur==1.0.4

Unix/macOs:

pip install deblur==1.0.4

deblur 1.0.22017-03-20T21:07:45Windows:

py -m pip install deblur==1.0.2

Unix/macOs:

pip install deblur==1.0.2

deblur 1.0.12017-02-28T23:03:34Windows:

py -m pip install deblur==1.0.1

Unix/macOs:

pip install deblur==1.0.1

deblur 1.0.02017-02-10T23:24:40Windows:

py -m pip install deblur==1.0.0

Unix/macOs:

pip install deblur==1.0.0

deblur 0.1.82017-01-11T14:38:16Windows:

py -m pip install deblur==0.1.8

Unix/macOs:

pip install deblur==0.1.8

deblur 0.1.72016-12-07T00:43:24Windows:

py -m pip install deblur==0.1.7

Unix/macOs:

pip install deblur==0.1.7

deblur 0.1.42016-11-07T22:07:02Windows:

py -m pip install deblur==0.1.4

Unix/macOs:

pip install deblur==0.1.4

deblur 0.1.32016-11-02T23:58:49Windows:

py -m pip install deblur==0.1.3

Unix/macOs:

pip install deblur==0.1.3

deblur 0.1.22016-10-18T14:58:32Windows:

py -m pip install deblur==0.1.2

Unix/macOs:

pip install deblur==0.1.2

deblur 0.1.12016-10-17T17:33:43Windows:

py -m pip install deblur==0.1.1

Unix/macOs:

pip install deblur==0.1.1

deblur 0.1.02016-08-26T18:28:56Windows:

py -m pip install deblur==0.1.0

Unix/macOs:

pip install deblur==0.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_deblur_downloaded_file>

On Unix/macOs:

pip install <path_to_deblur_downloaded_file>


List distribution:

- deblur-0.0.1.dev0.tar.gz
- deblur-0.1.0.tar.gz
- deblur-0.1.1.tar.gz
- deblur-0.1.2.tar.gz
- deblur-0.1.3.tar.gz
- deblur-0.1.4.tar.gz
- deblur-0.1.7.tar.gz
- deblur-0.1.8.tar.gz
- deblur-1.0.0.tar.gz
- deblur-1.0.1.tar.gz
- deblur-1.0.2.tar.gz
- deblur-1.0.4.tar.gz
- deblur-1.1.0.dev0.tar.gz
- deblur-1.1.0.tar.gz


Project link:

- Homepage