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

How to install exif-delete via python pip




exif-delete - A simple commandline tool to remove the EXIF data from image files., it belongs to Classifiers:

- Environment :: Console
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Natural Language :: English
- Programming Language :: Python :: 3.4
- Topic :: Security
- Topic :: Software Development :: Libraries :: Python Modules
- Topic :: Utilities

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



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_exif-delete_env

- Active the virtual environment

test_exif-delete_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_exif-delete_env

- Active the virtual environment

source test_exif-delete_env/bin/active


Step 2: OK, now, let flow below content to start the installation exif-delete

To install exif-delete on Windows(CMD):

py -m pip install exif-delete

To install exif-delete on Unix/macOs:

pip install exif-delete


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

Example:

pip install exif-delete==0.9.2


Please see the version list below table:

VersionReleased dateCommand
exif-delete 0.9.82020-12-28T16:12:30Windows:

py -m pip install exif-delete==0.9.8

Unix/macOs:

pip install exif-delete==0.9.8

exif-delete 0.9.52019-07-28T14:42:23Windows:

py -m pip install exif-delete==0.9.5

Unix/macOs:

pip install exif-delete==0.9.5

exif-delete 0.9.22019-07-25T00:51:10Windows:

py -m pip install exif-delete==0.9.2

Unix/macOs:

pip install exif-delete==0.9.2


Step 4: Otherwise, you can install exif-delete from local archives:

Download the distribution file from exif_delete-0.9.8.tar.gz or the specific exif-delete version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_exif-delete_downloaded_file>

On Unix/macOs:

pip install <path_to_exif-delete_downloaded_file>


List distribution:

- exif_delete-0.9.2.tar.gz
- exif_delete-0.9.5.tar.gz
- exif_delete-0.9.8-py3.6.egg
- exif_delete-0.9.8.tar.gz


Project link:

- Homepage