Reputation:
I currently try to add Cartoview to the existing GeoNode installation. I just followed the tutorial from the documentation to create a new project for Cartoview using the command:
django-admin.py startproject --template=https://github.com/cartologic/cartoview-project-template/archive/master.zip --name django.env,uwsgi.ini,.bowerrc webcartoview
And it comes up the following error from the command prompt:
I have successfully installed the Cartoview library (pip install cartoview
). But I am not quite understanding what the error message means. Am I doing anything wrong?
Upvotes: 1
Views: 212
Reputation: 9427
I've seen that error before - it was caused by a server using a newer version of SSL than my client supported.
For a quick workaround - download the zip file yourself and place it on the server so you can reference it directly.
If possible though, updating your operating system will mean that this command will work, and you'll also be more up to date with security patches and the like. That said, I suspect you may get away with just updating your python version.
Upvotes: 1