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

How to install scour via python pip




scour - Scour SVG Optimizer, it belongs to Classifiers:

- Intended Audience :: System Administrators
- Topic :: Multimedia
- Topic :: Multimedia :: Graphics
- Topic :: Multimedia :: Graphics :: Graphics Conversion
- Topic :: Software Development :: Build Tools
- Topic :: Software Development :: Pre-processors

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



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_scour_env

- Active the virtual environment

test_scour_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_scour_env

- Active the virtual environment

source test_scour_env/bin/active


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

To install scour on Windows(CMD):

py -m pip install scour

To install scour on Unix/macOs:

pip install scour


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

Example:

pip install scour==0.26


Please see the version list below table:

VersionReleased dateCommand
scour 0.38.22020-11-22T14:05:55Windows:

py -m pip install scour==0.38.2

Unix/macOs:

pip install scour==0.38.2

scour 0.38.1.post12020-09-03T20:23:25Windows:

py -m pip install scour==0.38.1.post1

Unix/macOs:

pip install scour==0.38.1.post1

scour 0.38.12020-09-02T17:20:06Windows:

py -m pip install scour==0.38.1

Unix/macOs:

pip install scour==0.38.1

scour 0.382020-08-06T20:38:15Windows:

py -m pip install scour==0.38

Unix/macOs:

pip install scour==0.38

scour 0.372018-07-04T17:45:51Windows:

py -m pip install scour==0.37

Unix/macOs:

pip install scour==0.37

scour 0.362017-08-06T03:11:40Windows:

py -m pip install scour==0.36

Unix/macOs:

pip install scour==0.36

scour 0.352016-09-14T10:11:40Windows:

py -m pip install scour==0.35

Unix/macOs:

pip install scour==0.35

scour 0.342016-07-25T10:49:07Windows:

py -m pip install scour==0.34

Unix/macOs:

pip install scour==0.34

scour 0.332016-01-29T08:26:46Windows:

py -m pip install scour==0.33

Unix/macOs:

pip install scour==0.33

scour 0.322015-12-10T22:39:40Windows:

py -m pip install scour==0.32

Unix/macOs:

pip install scour==0.32

scour 0.312015-11-16T17:08:12Windows:

py -m pip install scour==0.31

Unix/macOs:

pip install scour==0.31

scour 0.302014-08-05T10:47:39Windows:

py -m pip install scour==0.30

Unix/macOs:

pip install scour==0.30

scour 0.292014-07-26T15:20:57Windows:

py -m pip install scour==0.29

Unix/macOs:

pip install scour==0.29

scour 0.282014-01-11T23:12:37Windows:

py -m pip install scour==0.28

Unix/macOs:

pip install scour==0.28

scour 0.272013-10-26T15:48:34Windows:

py -m pip install scour==0.27

Unix/macOs:

pip install scour==0.27

scour 0.262013-10-22T16:26:25Windows:

py -m pip install scour==0.26

Unix/macOs:

pip install scour==0.26


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_scour_downloaded_file>

On Unix/macOs:

pip install <path_to_scour_downloaded_file>


List distribution:


Project link:

- Homepage