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
I get the following error when installing AbLang via pip, or directly from git. It looks like maybe it is expecting to be deleting a file, but instead it's a directory. Are you seeing the same behavior? Or is this a python version issue? Thanks for your help!:
return self._get_build_requires(
File "/tmp/pip-build-env-gzvrkc_f/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 159, in _get_build_requires
self.run_setup()
File "/tmp/pip-build-env-gzvrkc_f/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 174, in run_setup
exec(compile(code, __file__, 'exec'), locals())
File "setup.py", line 217, in <module>
os.unlink(fairseq_examples)
IsADirectoryError: [Errno 21] Is a directory: 'fairseq/examples'
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error
× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> See above for output.
The text was updated successfully, but these errors were encountered:
Thank you for interest in AbLang! Unfortunately this is a known issue with fairseq 0.10.1 and 0.10.2 (see facebookresearch/fairseq#3535) . A possible workaround is to do:
python pip install fairseq==0.10.0
I hope this helps! I'll keep this issue open until fairseq is properly fixed.
Sorry for the long wait! fairseq keeps introducing different dependency issues. To resolve this, we have decided to extract the code from fairseq that we use, allowing us not to install fairseq anymore 8f901e9.
Dear Authors,
I get the following error when installing AbLang via pip, or directly from git. It looks like maybe it is expecting to be deleting a file, but instead it's a directory. Are you seeing the same behavior? Or is this a python version issue? Thanks for your help!:
The text was updated successfully, but these errors were encountered: