fiveam-asdf not found #121
-
Good morning, I am new to using this planner and am trying to run some of the tests.lisp scripts to get to grips with the code. Running tests.lisp from the blocks example I get the following error: I have imported fiveam-asdf using quicklisp but this hasn't helped. Are you able to assist please? Many thanks Samuel |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@samuelvimes32 -- it would help a great deal if you would post a transcript of exactly what you did, from the start up of your lisp all the way through to the error. Also, it would be helpful to know what lisp and OS you are using. To the best of my knowledge, you should be able to get all the dependencies (including fiveam-asdf) from quicklisp, but that's not how I load, so I don't know for sure. And if you are loading with quicklisp, you will need to do In order for the tests to work, the SHOP3 repository is kept entirely self-contained, so if you wish you can find all of the dependencies in the |
Beta Was this translation helpful? Give feedback.
@samuelvimes32 -- it would help a great deal if you would post a transcript of exactly what you did, from the start up of your lisp all the way through to the error. Also, it would be helpful to know what lisp and OS you are using.
To the best of my knowledge, you should be able to get all the dependencies (including fiveam-asdf) from quicklisp, but that's not how I load, so I don't know for sure. And if you are loading with quicklisp, you will need to do
(ql:quickload "shop3")
not(asdf:load-system "shop3")
(this is one of the reasons a transcript is critical).In order for the tests to work, the SHOP3 repository is kept entirely self-contained, so if you wish you can find all of the dep…