-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
not installing in python3 #6
Comments
restored packaging system with:
|
I get:
|
This project is pretty much abandoned. It was created before rdflib worked with python3 (or before I did). It shouldn't be rocket science to make it work in py3, but I will not do it. |
By this project, I mean |
This was also made quite a few years back - web-dev technology has come quite far since then, I would redo this as a single page app if I were to redo it today. |
Cool, thanks for the clarification. |
So which open source solution would a newbie like me choose for setting up a SPARQL web endpoint for a few hundred RDF graphs? |
I found a partial python3 port at the Y-Digital clone. I made it run with the flask dev server as well. Maybe there is an issue with encoding but initial impression is that it installs and runs well.
May offer for PR at later time. |
r@K45VM:~/repos/rdflib-web$ sudo python3 setup.py install
Traceback (most recent call last):
File "setup.py", line 66, in
config.update({'src_root': setup_python3()})
File "setup.py", line 15, in setup_python3
for line in open("MANIFEST.in"):
FileNotFoundError: [Errno 2] No such file or directory: 'MANIFEST.in'
I commented line 66 (dummy me). And now the error I get (with either install or uninstall commands) is:
r@K45VM:~/repos/rdflib-web$ sudo python3 setup.py uninstall
Traceback (most recent call last):
File "setup.py", line 64, in
from setuptools import setup
File "/usr/local/lib/python3.4/dist-packages/setuptools/init.py", line 11, in
from setuptools.extension import Extension
File "/usr/local/lib/python3.4/dist-packages/setuptools/extension.py", line 8, in
from .dist import _get_unpatched
File "/usr/local/lib/python3.4/dist-packages/setuptools/dist.py", line 21, in
packaging = pkg_resources.packaging
AttributeError: 'module' object has no attribute 'packaging'
The text was updated successfully, but these errors were encountered: