0

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

MrBhuyan
  • 151
  • 2
  • 17
  • Does this answer your question? [pip install FileNotFoundError: \[Errno 2\] No such file or directory:](https://stackoverflow.com/questions/51405580/pip-install-filenotfounderror-errno-2-no-such-file-or-directory) – Jared Smith Aug 12 '21 at 10:53
  • or [python-could-not-install-packages-due-to-an-oserror-errno-2-no-such-file-or](https://stackoverflow.com/questions/65980952/python-could-not-install-packages-due-to-an-oserror-errno-2-no-such-file-or) – Trock Aug 12 '21 at 10:54
  • 1
    the [PyPi page of `neuralintents`](https://pypi.org/project/neuralintents/) states that project is _Still in a buggy alpha state._ so that may be part of the issue – Matiiss Aug 12 '21 at 10:56
  • The package is possibly broken. File a [github issue on the project](https://github.com/NeuralNine/neuralintents). – Jared Smith Aug 12 '21 at 10:57

1 Answers1

1

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
Gino Mempin
  • 25,369
  • 29
  • 96
  • 135
  • 1
    As it’s currently written, your answer is unclear. Please [edit] to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Nov 02 '21 at 17:48