You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1,) welly is not installed in the pyndb, should have been added to the install, the point of pyndb files is that everything is supposed to be self-contained
2.) dt_ds.smooth(), has no smooth function, there is a despike() for dt
appears that example requires a specific version of the welly library, and the pandas and lasio; not the current version, or this test version
3.) w.df()
AttributeError: 'DataFrame' object has no attribute 'dtype'
The pandas is also broken.
The text was updated successfully, but these errors were encountered:
using pip install -r requirements.txt on the above lines got most stuff working, seems that poster forgot to attach the requirements.txt, or doesn't know how to generate one for his project
there is lots of similar code on github doing same stuff, I found working example at https://github.com/raquelsilva/pytie/blob/master/requirements.txt
You can also generate a Python requirements.txt file directly from the command line with:
pip freeze > requirements.txt
...
using a working case generate the file as above, and post in your github page so that people can actually run your software, as shown in your example post, this is a major problem with python, we must be using the same exact library version that you are using.
1,) welly is not installed in the pyndb, should have been added to the install, the point of pyndb files is that everything is supposed to be self-contained
2.) dt_ds.smooth(), has no smooth function, there is a despike() for dt
appears that example requires a specific version of the welly library, and the pandas and lasio; not the current version, or this test version
3.) w.df()
AttributeError: 'DataFrame' object has no attribute 'dtype'
The pandas is also broken.
The text was updated successfully, but these errors were encountered: