I\'m trying to run a REST API on CentOS 7, I read urllib.parse is in Python 3 but I\'m using Python 2.7.5 so I don\'t know how to install this module.
I installed al
For python 3 pip install urllib
find the utils.py in %PYTHON_HOME%\Lib\site-packages\solrcloudpy\utils.py
utils.py
change the import urlparse to
import urlparse
from urllib import parse as urlparse