allenai / allenact

An open source framework for research in Embodied-AI from AI2.
https://www.allenact.org
Other
308 stars 49 forks source link

Fix path normalization on Windows #375

Open Richienb opened 10 months ago

Richienb commented 10 months ago

os.path.abspath uses forward slashes on posix and back slashes on Windows. This is a problem because the next line of code splits the string by (only) forward slashes. Instead, we can use posixpath.normpath which always uses forward slashes.

Richienb commented 10 months ago

I have not yet succeeding in running allenact on Windows, this pr contains a change I made which fixes an error that was thrown, though there are likely more.