-
Notifications
You must be signed in to change notification settings - Fork 9
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
libiconv missing from uwsgi dependencies #221
Comments
@ocefpaf Do you know if |
It is the dependency of a dependency ( The problem is probably a bad mix of packages from Maybe conda-forge/uwsgi-feedstock#10 will fix it. (But things will only get stable when conda-forge moves to conda-build 3.) |
Thanks for figuring things out 😄 |
Thanks @ocefpaf. Does this mean that it's safer for @lsetiawan to add that dependency explicitly in WOFpy requirements until conda-forge moves to conda-build 3? Or that we should wait (while crossing our fingers) to see if conda-forge/uwsgi-feedstock#10 will take care of it? |
In a way, yes :-( b/c even with conda-forge/uwsgi-feedstock#10, if defaults updates their version too, there will still be conda solver related problems like that and we cannot predict when |
Ok, thanks. So be it. |
I tried deploying |
That means you are using the If you are using The reason for this incompatibility is b/c the the PS: can you send me the details on how you are creating the deployment env? |
I did this:
|
What is your |
I do not have one. |
Can you send me a PS: if you do have conda-forge packages you somehow have a |
I don't have any Conda List
|
This is what I feared 😒 Let me go over all the packages in |
Trying to understand here. So should the |
Only if you have the option
The thing is, TL;DR we need to rebuild Issues like this one is the reason we created conda-forge, so the stack does not change under us. |
Yup, I caught that ... I'll follow up with the ODM2 gang soon. |
Thanks for the explanations @ocefpaf. That was helpful! |
I get an error when trying to deploy
wofpy
via uwsgi.$ uwsgi --socket 0.0.0.0:8080 --protocol=http -w wsgi uwsgi: error while loading shared libraries: libiconv.so.2: cannot open shared object file: No such file or directory
To solve this, I had to do
conda install libiconv
. Seems like this dependency is missing fromuwsgi
, should it be included inwofpy
?The text was updated successfully, but these errors were encountered: