On 27Oct2017 15:56, David Gabriel <davidgab...@gmail.com> wrote:
I am running a python code that generates for me this error :

from packaging import version as pack_version
ImportError: No module named packaging

I googled it and I have found so many suggestions regarding updating 'pip'
and installing python-setuptools but all of these did not fix this issue.

You need to fetch the "packaging" module. That is what pip is for, eg:

 pip install --user packaging

The --user is to install it in your "personal" python library space.

Cheers,
Cameron Simpson <c...@cskk.id.au> (formerly c...@zip.com.au)
--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to