Skip to content
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

Add note to doc about conda installation of esmpy #224

Closed
aulemahal opened this issue Jan 18, 2023 · 0 comments · Fixed by #230
Closed

Add note to doc about conda installation of esmpy #224

aulemahal opened this issue Jan 18, 2023 · 0 comments · Fixed by #230
Assignees
Labels
documentation Improvements or additions to documentation
Milestone

Comments

@aulemahal
Copy link
Collaborator

With esmpy 8.4 the conda recipe has changed. There a library file that now gets linked through an environment variable. When installing with conda, this environment variable is set upon activation of the virtual env, and NOT when the installer runs.

Thus, one can't do:

conda activate myenv
conda install esmpy
python -c "import esmpy"

One must rather do:

conda activate myenv
conda install esmpy
conda deactivate
conda activate myenv
python -c "import esmpy"

This is issue : conda-forge/esmf-feedstock#91.

A note to the documentation should be added.

@aulemahal aulemahal added the documentation Improvements or additions to documentation label Jan 18, 2023
@aulemahal aulemahal added this to the v0.8 milestone Jan 18, 2023
@aulemahal aulemahal self-assigned this Jan 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant