multi131
Hi,
This seems to be an issue with conda package for lld/llvm
as also seen here https://github.com/conda/conda/issues/12834. See my comment in that github issue.
In the meantime, the easiest way to start using artiq in windows is via MSYS2. See https://m-labs.hk/artiq/manual-beta/installing.html#installing-via-msys2-windows.
Or if you still want to go with conda, you can try using conda-forge
as the priority channel rather than defaults
(anaconda) channel. Though be careful with the version, since it will fetch the latest version from upstream.
A sample command:
conda create -n artiq7 artiq llvmlite=0.39.0 libllvm14 llvm-tools=14.0.6 lld=14.0.6 python=3.10.13 -c conda-forge
Take note that I have pinned the version of some packages to match artiq7 dependencies. This initially creates the artiq7 environment but I haven't thoroughly tested it. You can also update/change the packages inside your conda env when you encounter compatibility issues if you try this method.