Open keflavich opened 2 years ago
Sorry for the delay. I am confused as to why the error changed. It looks like at first it cannot find the package, but then once you have given it the right path, it is having some python relative module load issues (which I have seen before, but had fixed).
I just ran the install Pkg.add("CloudCovErr") on a fresh machine/environment with a Rocky Linux 8 OS with no problems.
Can I get some more details to help me run this down? What OS are you on? Is this a local/remote machine?
This is a remote machine running redhat Red Hat Enterprise Linux Server release 7.7 (Maipo)
. I installed julia
using conda
- which I guess is obvious from the paths.
What else would help?
Oh gosh, I have never installed julia
via conda
. I suspect that is the issue. I load julia
as its own module on my remote machine (or via dmg on my local machine) and work entirely within the julia
environment. If you are willing to try a separate install of julia
, I would love to know if that solves the problem... I can try the conda
based install tomorrow and see if I can reproduce.
my most recent retry maybe worked:
julia> import Pkg
julia> Pkg.add(url="https://github.com/andrew-saydjari/CloudCovErr.jl")
Cloning git-repo `https://github.com/andrew-saydjari/CloudCovErr.jl`
Updating git-repo `https://github.com/andrew-saydjari/CloudCovErr.jl`
Updating registry at `/orange/adamginsburg/miniconda3/envs/python39/share/julia/registries/General.toml`
Resolving package versions...
Updating `/blue/adamginsburg/adamginsburg/miniconda3/envs/python39/share/julia/environments/python39/Project.toml`
[06334dd7] ~ CloudCovErr v0.9.1 ⇒ v0.9.2 `https://github.com/andrew-saydjari/CloudCovErr.jl#main`
Updating `/blue/adamginsburg/adamginsburg/miniconda3/envs/python39/share/julia/environments/python39/Manifest.toml`
[06334dd7] ~ CloudCovErr v0.9.1 ⇒ v0.9.2 `https://github.com/andrew-saydjari/CloudCovErr.jl#main`
Precompiling project...
1 dependency successfully precompiled in 18 seconds (173 already precompiled, 1 skipped during auto due to previous errors)
julia>
julia> using CloudCovErr
julia>
I ran into this issue: https://discourse.julialang.org/t/pycall-and-conda-inside-github-actions/70128/11
The fix suggested in that thread doesn't seem to work:
Any tips?