I installed pip for python 3.6 on Ubuntu 14. After starting
sudo apt-get install python3-pip
to install pip3, it works very well. However, after installation, when I try to run
pip3 install packagename
something strange happens to install a new package:
File "/usr/lib/python3/dist-packages/pkg_resources.py", line 1479, in <module> register_loader-type(importlib_bootstrap.SourceFileLoader, DefaultProvider) AttributeError: module "importlib._bootstrap" has no attribute "SourceFileLoader"
I do not seem to have done anything wrong, and I really cannot understand the reason.
source share