I am trying to download some matrices from SuiteSparseMatrixCollection and it always downloads it to C:\Users\username\.julia\artifacts . Is it possible to download it to the current project directory by temporarily changing the artifact path? I checked online and found artifact could be related but could not figure it out how.
Thanks,
“”"
using Krylov, MatrixMarket, SuiteSparseMatrixCollection
ssmc = ssmc_db(verbose=false)
matrix = ssmc_matrices(ssmc, “HB”, “bcsstk09”)
path = fetch_ssmc(matrix, format=“MM”)
A = MatrixMarket.mmread(joinpath(path[1], “$(matrix.name[1]).mtx”))
“”"