Using/Installing Downloaded Julia Packages Without Github Access
We’re looking to use a Julia (v1.10) program at work, but IT blocks Github on our network. We got them to download the source code and (several dozen) dependencies themselves from Github in package form and send them to us. I extracted the packages, renamed the folders to remove the *.jl-master extension, and appended the dependency file path to the LOAD_PATH environment variable, but I’m now having trouble actually using the packages, as Julia tries to clone a registry from JuliaRegistries/General.git when running ‘using ‘, which fails due to Github again being blocked. Is there a way to install or otherwise use source code from external packages completely offline that bypasses the registry issue?