Python 3: ImportError “No Module named Setuptools”

I’m having troubles with installing packages in Python 3. I have always installed packages with setup.py install. But now, when I try to install the ansicolors package I get: importerror “No Module named Setuptools” I have no idea what to do because I didn’t have setuptools installed in the past. Still, I was able to … Read more

Why is python setup.py saying invalid command ‘bdist_wheel’ on Travis CI?

My Python package has a setup.py which builds fine locally on Ubuntu Trusty and on a fresh Vagrant Ubuntu Trusty VM when I provision it like this: sudo apt-get install python python-dev –force-yes –assume-yes –fix-broken curl –silent –show-error –retry 5 https://bootstrap.pypa.io/get-pip.py | sudo python2.7 sudo -H pip install setuptools wheel virtualenv –upgrade But when I … Read more