LinearAlgebraicRepresentation.jl icon indicating copy to clipboard operation
LinearAlgebraicRepresentation.jl copied to clipboard

update README install section

Open ghost opened this issue 4 years ago • 1 comments

I found I had to use add "LinearAlgebraicRepresentation" instead of add("LinearAlgebraicRepresentation") which errored out with ERROR: Could not determine command and wanted to update the README to include also this installation line

ghost avatar Mar 29 '21 04:03 ghost

@grace-harper-ibm, AFAIK the add "LinearAlgebraicRepresentation" line only works in the Pkg REPL (triggered with ]). What they use in the README is the direct method call from the normal Julia REPL. That approach works if one uses the line that's currently commented out in the README, i.e.:

using Pkg
Pkg.add("LinearAlgebraicRepresentation")

I just tested this locally, and it worked as expected. (On an earlier version of this comment, I mentioned getting an "unsatisfiable requirements" error during the process, but that's disappeared now that I've upgraded to Julia 1.6.)

waldyrious avatar Mar 29 '21 10:03 waldyrious