-
Notifications
You must be signed in to change notification settings - Fork 596
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conda env create fails with FileNotFoundError #4741
Comments
@markw The error message above looks like the one I'd expect you'd get if you haven't built the python archive ( |
@cmnbroad Apologies that I didn't specify that I did run Running conda v4.5.2, python v3.6.4. I run everything from a conda env created with: |
Oh yeah, I see. I did upgrade to latests minconda and now I see the same issue. So something changed in conda. |
It does look like there are some references to similar issues(see comments in https://stackoverflow.com/questions/35245401/combining-conda-environment-yml-with-pip-requirements-txt) in some stack overflow threads, and some conda tickets that may be related. Given this issue, and the unrelated but evolving requirement that we have more than a single conda yml (we need a separate one with the intel tensorflow version that supports acceleration on intel hardware), I'm going to make the following changes: Add a single conda template and a gradle task that generates the two (nearly but not quite identical) yml files as part of the build. These will be stored in the build directory with the python package archive, so the yml file no longer has to specify a path to the zip (which we previously had to strip when we included the file in the zip/tar distribution). The zip and yml files will be copied into the tar/zip distributions as was previously done. |
README.md instructs developers to create the conda environment with the command:
This currently fails with the following message (at least on MacOS):
Moving gatkcondaenv.yml to the GATK root solves the issue. We can either change the yml location or modify the readme.
The text was updated successfully, but these errors were encountered: