Tristramg / osm4routing

Parse OpenStreetMap data for routing
GNU General Public License v3.0
109 stars 32 forks source link

HTTP Error 403: SSL is required #19

Open juyeonKang opened 6 years ago

juyeonKang commented 6 years ago

when trying to run setup.py and osm4routing.py, I got HTTP Error 403: SSL is required. How can I solve this problem?

petitssoldats commented 6 years ago

same here 😭

Tristramg commented 6 years ago

Oh. That’s surprising. Spontaneously, I can’t see what would require any http access…

I don’t really maintain this project anymore. Did you have a look at https://github.com/Tristramg/osm4routing2 ?

augdomingues commented 6 years ago

This may be due to the url in the setup function in setup.py. Using the secure version of http (https) seems to be causing this issue in Python, something related to the a failure in checking the SSL certificate... Can you change it to "http://github.com/Tristramg/osm4routing/" and see if you can make it work?

braandl commented 5 years ago

Just change DEFAULT_URL in distribute_setup.py to DEFAULT_URL = "https://pypi.python.org/packages/source/d/distribute/"