You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ply 3.3 is not anymore in the dependency repository of pip. There are only version 3.4 and newer versions. The only way to get it work is to manually download the dependency and install it by hand.
choose the 3.3, install and rerun the installation setup of anapsid
or use this Dockerfile
FROM python:2.7
WORKDIR /app
RUN wget http://www.dabeaz.com/ply/ply-3.3.tar.gz
RUN pip install ./ply-3.3.tar.gz
COPY . /app
RUN python /app/setup.py install
# build the docker file:
docker build . -t anapsid
# run the dockerfile in bash mode:
docker run -it anapsid bash
# then run the example inside the container:
python scripts/run_anapsid -e example/endpoints/dbpediaEndpoint -q example/dbpediaQueries/example.sparql -p b -s False -o False -d SSGM -a True -w False -r False
The text was updated successfully, but these errors were encountered:
ply 3.3 is not anymore in the dependency repository of pip. There are only version 3.4 and newer versions. The only way to get it work is to manually download the dependency and install it by hand.
or use this Dockerfile
The text was updated successfully, but these errors were encountered: