I'm attempting to install scrubber via pip.
Downloading/unpackingscrubber (from-rrequirements.txt (line47))
Downloadingscrubber-1.6.1.tar.gzRunningsetup.py (path:/home/robin/github/ieee/venv/build/scrubber/setup.py) egg_infoforpackagescrubberTraceback (mostrecentcalllast):
File"<string>", line17, in<module>File"/home/robin/github/ieee/venv/build/scrubber/setup.py", line13, in<module>fromscrubberimport__version__asversionFile"/home/robin/github/ieee/venv/build/scrubber/scrubber/__init__.py", line15, in<module>fromurlparseimporturljoinImportError: Nomodulenamed'urlparse'Completeoutputfromcommandpythonsetup.pyegg_info:
Traceback (mostrecentcalllast):
File"<string>", line17, in<module>File"/home/robin/github/ieee/venv/build/scrubber/setup.py", line13, in<module>fromscrubberimport__version__asversionFile"/home/robin/github/ieee/venv/build/scrubber/scrubber/__init__.py", line15, in<module>fromurlparseimporturljoinImportError: Nomodulenamed'urlparse'
This error occurs because (in python3) urljoin is obtained via from urllib.parse import urljoin.
I'm attempting to install scrubber via
pip.This error occurs because (in python3)
urljoinis obtained viafrom urllib.parse import urljoin.