1 | initial version |
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
2 | No.2 Revision |
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.