Python Forum

Full Version: install cups on python3
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
is it
pip install pycups
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.