Tiny Core Linux

Tiny Core Base => TCB Talk => Topic started by: andyj on February 17, 2019, 06:38:54 PM

Title: Free signed certificates using Let's Encrypt
Post by: andyj on February 17, 2019, 06: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.
Title: Re: Free signed certificates using Let's Encrypt
Post by: Juanito on February 18, 2019, 03: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
Title: Re: Free signed certificates using Let's Encrypt
Post by: Juanito on February 18, 2019, 04: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...