I'm using snakemake with conda env.
I created conda environment like conda create -n myenv some_packages
after that I used pypy3 to install other packages, like.
pypy3 -m some_package
pypy3 -m pip install --no-cache-dir some_package
Now I exported the env in this way conda env export > myenv.yaml
But when the yaml file used by snakemake it does not install the packages that were installed using pypy3
.
Any suggestions?
Thanks