This is what I received from the terminal:
$python3 -m pip install cffi
Collecting cffi
Using cached https://files.pythonhosted.org/packages/ff/1d/0b743dadcdf4980b717163fd2d24cd18c1c0c7a78a076268afd7e0e2c25e/cffi-1.14.0-cp37-cp37m-manylinux1_x86_64.whl
Collecting pycparser (from cffi)
Installing collected packages: pycparser, cffi
Successfully installed cffi-1.14.0 pycparser-2.19
Then I tried to run python3 -m pip install certbot-nginx
since I am currently using nginx for my web server.
At first it returned me this:
(...)
Installing collected packages: mock, certifi, chardet, idna, urllib3, six, pycparser, cffi, cryptography, PyOpenSSL, requests, pytz, requests-toolbelt, setuptools, josepy, pyrfc3339, acme, pyparsing, distro, ConfigArgParse, parsedatetime, zope.interface, configobj, zope.proxy, zope.deferredimport, zope.event, zope.hookable, zope.deprecation, zope.component, certbot, certbot-nginx
Successfully installed ConfigArgParse-1.0 PyOpenSSL-19.1.0 acme-1.3.0 certbot-1.3.0 certbot-nginx-1.3.0 certifi-2019.11.28 cffi-1.14.0 chardet-3.0.4 configobj-5.0.6 cryptography-2.8 distro-1.4.0 idna-2.9 josepy-1.3.0 mock-4.0.1 parsedatetime-2.5 pycparser-2.19 pyparsing-2.4.6 pyrfc3339-1.1 pytz-2019.3 requests-2.23.0 requests-toolbelt-0.9.1 setuptools-45.2.0 six-1.14.0 urllib3-1.25.8 zope.component-4.6 zope.deferredimport-4.3.1 zope.deprecation-4.4.0 zope.event-4.4 zope.hookable-5.0.0 zope.interface-4.7.1 zope.proxy-4.3.3
Segmentation Error (core dumped)
So I googled again, executed sudo rm -rf ~/.local
and tried python3 -m pip install certbot-nginx
again and shows me this:
Collecting certbot-nginx
(...)
Installing collected packages: mock, pycparser, cffi, six, cryptography, PyOpenSSL, setuptools, josepy, chardet, certifi, idna, urllib3, requests, requests-toolbelt, pytz, pyrfc3339, acme, pyparsing, zope.interface, configobj, ConfigArgParse, zope.deprecation, zope.event, zope.proxy, zope.deferredimport, zope.hookable, zope.component, distro, parsedatetime, certbot, certbot-nginx
Successfully installed ConfigArgParse-1.0 PyOpenSSL-19.1.0 acme-1.3.0 certbot-1.3.0 certbot-nginx-1.3.0 certifi-2019.11.28 cffi-1.14.0 chardet-3.0.4 configobj-5.0.6 cryptography-2.8 distro-1.4.0 idna-2.9 josepy-1.3.0 mock-4.0.1 parsedatetime-2.5 pycparser-2.19 pyparsing-2.4.6 pyrfc3339-1.1 pytz-2019.3 requests-2.23.0 requests-toolbelt-0.9.1 setuptools-45.2.0 six-1.14.0 urllib3-1.25.8 zope.component-4.6 zope.deferredimport-4.3.1 zope.deprecation-4.4.0 zope.event-4.4 zope.hookable-5.0.0 zope.interface-4.7.1 zope.proxy-4.3.3
This is the output from pip that I did.
Um then should I delete modules installed with pip?