Home > Net >  ERROR WHEN IMPORTING PYTORCH (The filename or extension is too long)
ERROR WHEN IMPORTING PYTORCH (The filename or extension is too long)

Time:01-01

I'm using Anconda to run my Transformers project locally in google colab.

I've created a new environment (tf_gpu) and installed (supposedly) everything I need.

And everything works fine, but when I try to simply import pytorch, this error appears:

[WinError 206] The filename or extension is too long: 'C:\\Users\\34662\\anaconda3\\envs\\tf_gpu\\lib\\site-packages\\torch\\lib'

When clearly the path is not long enough to trigger this error.

My python version is 3.8, and my GPU is a Nvidia GeForce GTX 1650, so it shouldn't be a GPU problem

Does anybody knows why this happens?

Any help is good at this point, I don't know how to solve this.

Here I leave a screenshot of the complete error message

Thank you in advance.

CodePudding user response:

Your problem is that the error ist not a too long path error it is a file not found error which mean that pytorch is not correctly installed

  • Related