Ask Your Question

Revision history [back]

The error you report, as @tmonteil answered, comes from using a Sage built without SSL support.

Lack of SSL support won't let you pip-install using

sage -pip install name_of_the_package

Instead, you can download it, extract it, and do

sage -pip install /path/to/the/downloaded/package

The error you report, as @tmonteil answered, comes from using a Sage built without SSL support.

Lack of SSL support won't let you pip-install using

sage -pip install name_of_the_package

Instead, you can download it, extract it, and do

sage -pip install /path/to/the/downloaded/package

In addition, you could install openssl into your Sage installation as follows:

sage -i openssl
sage -f python2
sage -i pyopenssl

after which you should be able to sage -pip install any package you want.