Afnan
Afnan

Reputation: 7

getting an OSError when trying to pip install

When I try to pip install neuralintents it gives me this error:

ERROR: Could not install packages due to an OSError: 
[Errno 2] No such file or directory:

can it be fixed if I enable windows long path, how do I do it

Thanks

Upvotes: 0

Views: 953

Answers (1)

Tony Nguyen
Tony Nguyen

Reputation: 11

When I tried to install neuralintents with Python 3.10.0, I got a Tensorflow error. Then I tried to install tensorflow like this:

pip install https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0-py3-none-any.whl

After that, you can now do

pip install neuralintents

Upvotes: 1

Related Questions