joeyespo / grip

Preview GitHub README.md files locally before committing them.
MIT License
6.45k stars 423 forks source link

Linux mint 17.3 installation issue #272

Closed bperrybap closed 6 years ago

bperrybap commented 6 years ago

Trying to install grip on Linux mint 17.3 mate 64 bit and running into an issue. Using pip version 10.0.1 Here is the output from from the pip install.

bill@PowerSpec ~ $ pip --version
pip 10.0.1 from /usr/local/lib/python2.7/dist-packages/pip (python 2.7)
bill@PowerSpec ~ $ sudo -H pip install grip
Collecting grip
  Using cached https://files.pythonhosted.org/packages/3c/ea/2a475ed37e1b6476182e71223c98667f51704bdbc919608372b203c7ea04/grip-4.5.2.tar.gz
Requirement already satisfied: docopt>=0.4.0 in /usr/local/lib/python2.7/dist-packages (from grip) (0.6.2)
Requirement already satisfied: Flask>=0.10.1 in /usr/local/lib/python2.7/dist-packages (from grip) (1.0.2)
Requirement already satisfied: Markdown>=2.5.1 in /usr/local/lib/python2.7/dist-packages (from grip) (2.6.11)
Requirement already satisfied: path-and-address>=2.0.1 in /usr/local/lib/python2.7/dist-packages (from grip) (2.0.1)
Requirement already satisfied: Pygments>=1.6 in /usr/local/lib/python2.7/dist-packages (from grip) (2.2.0)
Collecting requests>=2.4.1 (from grip)
  Using cached https://files.pythonhosted.org/packages/49/df/50aa1999ab9bde74656c2919d9c0c085fd2b3775fd3eca826012bef76d8c/requests-2.18.4-py2.py3-none-any.whl
Requirement already satisfied: click>=5.1 in /usr/local/lib/python2.7/dist-packages (from Flask>=0.10.1->grip) (6.7)
Requirement already satisfied: Werkzeug>=0.14 in /usr/local/lib/python2.7/dist-packages (from Flask>=0.10.1->grip) (0.14.1)
Requirement already satisfied: itsdangerous>=0.24 in /usr/local/lib/python2.7/dist-packages (from Flask>=0.10.1->grip) (0.24)
Requirement already satisfied: Jinja2>=2.10 in /usr/local/lib/python2.7/dist-packages (from Flask>=0.10.1->grip) (2.10)
Collecting urllib3<1.23,>=1.21.1 (from requests>=2.4.1->grip)
  Using cached https://files.pythonhosted.org/packages/63/cb/6965947c13a94236f6d4b8223e21beb4d576dc72e8130bd7880f600839b8/urllib3-1.22-py2.py3-none-any.whl
Requirement already satisfied: idna<2.7,>=2.5 in /usr/local/lib/python2.7/dist-packages (from requests>=2.4.1->grip) (2.6)
Collecting chardet<3.1.0,>=3.0.2 (from requests>=2.4.1->grip)
  Using cached https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl
Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python2.7/dist-packages (from requests>=2.4.1->grip) (2018.4.16)
Requirement already satisfied: MarkupSafe>=0.23 in /usr/local/lib/python2.7/dist-packages (from Jinja2>=2.10->Flask>=0.10.1->grip) (1.0)
Installing collected packages: urllib3, chardet, requests, grip
  Found existing installation: urllib3 1.7.1
Cannot uninstall 'urllib3'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.

I do have grip running on another machine running the same OS that was done a while back (earlier this year). The version of pip on that machine is 9.0.2 I had some issues with the install on that machine as well but after installing a few additional packages are recommended by openSSL it did install. On this machine, I've not been able to install it. I'm out of ideas.

bperrybap commented 6 years ago

Nevermind, I got it working. On linux mint 17.3 it is best to install grip using "sudo -H pip install grip" using the default installed pip. All is ok now.

joeyespo commented 6 years ago

Excellent! And thanks for following up 😃