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

How to install IPTCInfo via python pip




IPTCInfo - IPTCInfo: extract and modify IPTC (metadata) information on images - port of IPTCInfo.pm by Josh Carter ', it belongs to Classifiers:

- License :: OSI Approved :: Artistic License
- License :: OSI Approved :: GNU General Public License (GPL)
- Topic :: Multimedia
- Topic :: Multimedia :: Graphics
- Topic :: Utilities

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



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_IPTCInfo_env

- Active the virtual environment

test_IPTCInfo_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_IPTCInfo_env

- Active the virtual environment

source test_IPTCInfo_env/bin/active


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

To install IPTCInfo on Windows(CMD):

py -m pip install IPTCInfo

To install IPTCInfo on Unix/macOs:

pip install IPTCInfo


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

Example:

pip install IPTCInfo==1.9


Please see the version list below table:

VersionReleased dateCommand
IPTCInfo 1.9.5-62011-07-25T21:16:11Windows:

py -m pip install IPTCInfo==1.9.5-6

Unix/macOs:

pip install IPTCInfo==1.9.5-6

IPTCInfo 1.9.5-52011-02-05T14:42:13Windows:

py -m pip install IPTCInfo==1.9.5-5

Unix/macOs:

pip install IPTCInfo==1.9.5-5

IPTCInfo 1.9.5-42010-08-01T18:15:32Windows:

py -m pip install IPTCInfo==1.9.5-4

Unix/macOs:

pip install IPTCInfo==1.9.5-4

IPTCInfo 1.9.5-32010-07-29T21:17:06Windows:

py -m pip install IPTCInfo==1.9.5-3

Unix/macOs:

pip install IPTCInfo==1.9.5-3

IPTCInfo 1.9.5-22010-07-29T05:12:06Windows:

py -m pip install IPTCInfo==1.9.5-2

Unix/macOs:

pip install IPTCInfo==1.9.5-2

IPTCInfo 1.9.5-12009-09-29T17:47:21Windows:

py -m pip install IPTCInfo==1.9.5-1

Unix/macOs:

pip install IPTCInfo==1.9.5-1

IPTCInfo 1.9.5-r32010-08-01T17:46:38Windows:

py -m pip install IPTCInfo==1.9.5-r3

Unix/macOs:

pip install IPTCInfo==1.9.5-r3

IPTCInfo 1.9.12004-09-10T07:59:53Windows:

py -m pip install IPTCInfo==1.9.1

Unix/macOs:

pip install IPTCInfo==1.9.1

IPTCInfo 1.92004-09-09T22:04:38Windows:

py -m pip install IPTCInfo==1.9

Unix/macOs:

pip install IPTCInfo==1.9


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

Download the distribution file from IPTCInfo-1.9.5-6.tar.gz or the specific IPTCInfo version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_IPTCInfo_downloaded_file>

On Unix/macOs:

pip install <path_to_IPTCInfo_downloaded_file>


List distribution:

- IPTCInfo-1.9.5-5.tar.gz
- IPTCInfo-1.9.5-6.tar.gz


Project link:

- Homepage
- Download