-
Notifications
You must be signed in to change notification settings - Fork 1
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
rebuild the conda environment #50
Comments
Notice that Use micromamba to solve the package requirements and then create a conda environment from the explicit list. This is still faster than only using
|
@sveseli This might interest you. |
@prjemian Thanks, very interesting... we might actually be able to use micromamba for DM if it speeds things up considerably |
Seems that (bdptest) bdp@terrier ~/DM/workflows/example-05 $ python blueskyImageServer.py --input-file /gdata/bdp/BDP/bdp-test-02/bdp_000001.tif
Traceback (most recent call last):
File "/clhome/BDP/DM/workflows/example-05/blueskyImageServer.py", line 5, in <module>
import pvaccess as pva
File "/clhome/BDP/micromamba/envs/bdptest/lib/python3.9/site-packages/pvaccess/__init__.py", line 1, in <module>
from .pvaccess import *
ImportError: libpvaClient.so.4.8.0: cannot open shared object file: No such file or directory It is necessary to re-arrange the order of the channels in the |
If you install pvapy via pip, it has all epics libraries included (no need for epics-base conda packages). Epics base conda package is needed for conda pvapy packages. |
That's what ruined the conda environment. |
Specifically, the |
(bdp2022) bdp@terrier ~/DM/workflows/example-05 $ conda list | wc -l
408 That's a lot of things to consider. (3 header lines, so 40 other packages to consider) |
With ~30 minutes per iteration using |
Using pip, we ruined the conda environment. Rebuild the the
env.yml
file.The text was updated successfully, but these errors were encountered: