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

How to install Desktopmagic via python pip




Desktopmagic - Robust multi-monitor screenshot grabber (Windows-only right now), it belongs to Classifiers:

- Environment :: Win32 (MS Windows)
- Topic :: Multimedia
- Topic :: Multimedia :: Graphics
- Topic :: Multimedia :: Graphics :: Capture
- Topic :: Multimedia :: Graphics :: Capture :: Screen Capture

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



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_Desktopmagic_env

- Active the virtual environment

test_Desktopmagic_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_Desktopmagic_env

- Active the virtual environment

source test_Desktopmagic_env/bin/active


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

To install Desktopmagic on Windows(CMD):

py -m pip install Desktopmagic

To install Desktopmagic on Unix/macOs:

pip install Desktopmagic


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

Example:

pip install Desktopmagic==11.5.3


Please see the version list below table:

VersionReleased dateCommand
Desktopmagic 14.3.112014-03-11T02:10:18Windows:

py -m pip install Desktopmagic==14.3.11

Unix/macOs:

pip install Desktopmagic==14.3.11

Desktopmagic 13.3.292013-03-29T04:21:28Windows:

py -m pip install Desktopmagic==13.3.29

Unix/macOs:

pip install Desktopmagic==13.3.29

Desktopmagic 11.5.3.12011-05-03T03:57:13Windows:

py -m pip install Desktopmagic==11.5.3.1

Unix/macOs:

pip install Desktopmagic==11.5.3.1

Desktopmagic 11.5.32011-05-03T03:36:39Windows:

py -m pip install Desktopmagic==11.5.3

Unix/macOs:

pip install Desktopmagic==11.5.3


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

Download the distribution file from Desktopmagic-14.3.11.zip or the specific Desktopmagic version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_Desktopmagic_downloaded_file>

On Unix/macOs:

pip install <path_to_Desktopmagic_downloaded_file>


List distribution:

- Desktopmagic-11.5.3.tar.gz
- Desktopmagic-11.5.3.1.tar.gz
- Desktopmagic-13.3.29.tar.gz
- Desktopmagic-13.3.29.zip
- Desktopmagic-14.3.11.tar.gz
- Desktopmagic-14.3.11.zip


Project link:

- Homepage