Open sergree opened 11 months ago
I am getting the same error! Have you managed to resolve it?
Comment Out Lines in Dockerfile:
Comment out the lines in the Dockerfile starting from and including RUN ./reinstall.sh
down to but excluding CMD ["bash"]
(keep this line).
Launch the Container: After commenting out the lines, launch the container.
Manually Handle Dependencies:
Manually work with the dependencies in requirements/requirements_nlp.txt
.
Address the Main Issue:
The primary issue is that megatron-lm
has been dropped from PyPI.
Commented Out Installation Line:
I commented out the line for installing megatron-lm
in requirements_nlp.txt
.
Added Manual Installation:
I added the installation of the package from the GitHub repository after installing requirements_nlp.txt
in reinstall.sh
:
pip install git+https://github.com/NVIDIA/Megatron-LM
Testing In progress. AFK
Hello! Thank you for your awesome work.
I tried to install your Docker example and have this error:
Thank you in advance.