WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Free signed certificates using Let's Encrypt  (Read 1615 times)

Offline andyj

  • Hero Member
  • *****
  • Posts: 1021
Free signed certificates using Let's Encrypt
« on: February 17, 2019, 03:38:54 PM »
Strangely ::), TC is not a supported OS for Let's Encrypt "certbot-auto" tool. I've worked a lot of computer languages, but python isn't one of them. I'm pretty sure this is wrong:

Code: [Select]
tc@box:~$ pip --version
Traceback (most recent call last):
  File "/usr/local/bin/pip", line 9, in <module>
    load_entry_point('pip==7.1.2', 'console_scripts', 'pip')()
  File "/usr/local/lib/python2.7/site-packages/pkg_resources/__init__.py", line 480, in load_entry_point
    return get_distribution(dist).load_entry_point(group, name)
  File "/usr/local/lib/python2.7/site-packages/pkg_resources/__init__.py", line 2692, in load_entry_point
    raise ImportError("Entry point %r not found" % ((group, name),))
ImportError: Entry point ('console_scripts', 'pip') not found

I have python, python-setuptools, and python-pip loaded among others. I need this I think to install Augeas python bindings they want.

Online Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14535
Re: Free signed certificates using Let's Encrypt
« Reply #1 on: February 18, 2019, 12:42:00 AM »
updated

Code: [Select]
$ pip --version
pip 19.0.2 from /usr/local/lib/python2.7/site-packages/pip-19.0.2-py2.7.egg/pip (python 2.7)

$ tce-load -i compiletc python-dev
$ sudo pip install python-numpy
...
Installing collected packages: numpy
  Running setup.py install for numpy ... done
Successfully installed numpy-1.16.1

Online Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14535
Re: Free signed certificates using Let's Encrypt
« Reply #2 on: February 18, 2019, 01:12:36 AM »
Note that if you're going to use the python-augeas bindings more than once, it's propably better to compile from source - you'll need libaugeas anyway...