Borealis
Borealis

Reputation: 1137

install CUPS in windows

in order to install base_report_to_printer module I realized that I should install cups as it is an external_dependencies

    'external_dependencies': {
        'python': ['cups'],
    },

It's okey to install it on ubuntu by running pip install pycups but how can I install it on windows ?

Upvotes: 4

Views: 5607

Answers (1)

gabrielgiussi
gabrielgiussi

Reputation: 9575

You can't. From cups.org

CUPS is the standards-based, open source printing system developed by Apple Inc. for macOS® and other UNIX®-like operating systems.

Upvotes: 1

Related Questions