Python Forum
install cups on python3 - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: install cups on python3 (/thread-3644.html)



install cups on python3 - gray - Jun-10-2017

hello friends
i installed cups...i wanted to install it on python3 but it was installed on python2
i used this link for downloading cups: download cups
i uninstalled it from python2 by deleting cups.so from python 2.7./dist-packages
now i can't install cups neithr python2 nor python3
i don't know why cannot i install on python2
my goal:
install cups on python3
i tried "sudo python3 setup.py install" but it didn't work
please helpppppppp Sad


RE: install cups on python3 - Larz60+ - Jun-10-2017

is it
pip install pycups



RE: install cups on python3 - sparkz_alot - Jun-10-2017

I presume you are trying to install the Python module and not the actual cups program (which is installed by default on Linux systems)
Try

For Python 3
pip3 install pycups
For Python 2
pip install pycups
Also, saying "...it doesn't work" is not helpful at all. You need to post the actual errors (between the error code tags) in it's entirety.