topisani / Discurses

A Python discord CLI focused on usability
MIT License
140 stars 14 forks source link

Installation failure #42

Closed Ge0 closed 6 years ago

Ge0 commented 6 years ago

from @warshanks

So I tried to reinstall and I got this

pip3.6 install discurses
Collecting discurses
  Using cached discurses-0.3.0.tar.gz
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-install-swwsrz2u/discurses/setup.py", line 5, in <module>
        from pip.req import parse_requirements
    ModuleNotFoundError: No module named 'pip.req'
----------------------------------------

Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-swwsrz2u/discurses/

The concerned line should not appear in setup.py anyway.

Still, I have no problem while setting up discurses.

kimusan commented 6 years ago

had the same. turns out my ubuntu pip was defaulting to a 2.7 version and not a 3. I installed python3-pip and used that instead pip3 install discurse and that worked.

Ge0 commented 6 years ago

It's fixed by the way.

mvkalsbeek commented 5 years ago

Using pip to install Discurses threw an error about the running Python version for me as well. After installing python3-pip and using pip3 to install Discurses the installation worked without error. Shouldn't the installation instructions (readme) be adjusted for this?