quiet-motherboard-43023
12/17/2021, 11:00 PMStep: start, Error: PackagesNotFoundError: The following packages are not available from current channels:
- python[version='3.9.7,3.9.9']
Current channels:
....
quiet-motherboard-43023
12/17/2021, 11:01 PMquiet-motherboard-43023
12/17/2021, 11:01 PMstraight-shampoo-11124
12/17/2021, 11:10 PM3.9.9
doesn't exist in channels as you pointed out and 3.9.7
isn't compatible with the current dependencies of Metaflow itself. Can you try e.g. @conda_base(python='3.8.10')
?quiet-motherboard-43023
12/18/2021, 6:40 AMPackagesNotFoundError: The following packages are not available from current channels:
- python[version='3.8.10,3.8.12']
But if I change conda_base to use 3.8.12
it works, maybe because conda base and local python versions are the same
To me it seems it's always setting twice python library, 1 from conda_base and another from the local installation
It should only use conda_base if specified I thinkstraight-shampoo-11124
12/18/2021, 6:14 PMquiet-motherboard-43023
12/19/2021, 8:23 PM@conda_base(libraries={"python": "3.8.10"})
It should be
@conda_base(python="3.8.10")
quiet-motherboard-43023
12/19/2021, 8:24 PMquiet-motherboard-43023
12/19/2021, 8:24 PMstraight-shampoo-11124
12/20/2021, 2:28 AM