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
FileNotFoundError: [Errno 2] File /home/janash/projects/materials-project-bp/notebooks/cbfv/element_properties/oliynyk.csv does not exist: '/home/janash/projects/materials-project-bp/notebooks/cbfv/element_properties/oliynyk.csv'
I've concluded that it has to do with case sensitivity of the path. In the repository, the folder is titled uppercase CBFV, while the path in the error message above is lowercase cbfv. If I change the folder name to lowercase, I am able to run the line of code without an error. This does require changing the imports though (ie from CBFV.cbfv.composition import generate_features becomes from cbfv.cbfv.composition import generate_features).
I've checked this on Windows and the case sensitivity is not an issue on that OS.
The text was updated successfully, but these errors were encountered:
On WSL, a problem is encountered in notebook 3 when running this line of code:
My error message is the following:
I've concluded that it has to do with case sensitivity of the path. In the repository, the folder is titled uppercase
CBFV
, while the path in the error message above is lowercasecbfv
. If I change the folder name to lowercase, I am able to run the line of code without an error. This does require changing the imports though (iefrom CBFV.cbfv.composition import generate_features
becomesfrom cbfv.cbfv.composition import generate_features
).I've checked this on Windows and the case sensitivity is not an issue on that OS.
The text was updated successfully, but these errors were encountered: