Remove the comments that pollute library_import_path in _download_additional_modules and correct import_library_name for "absl" #716
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR removes two comments that pollute variable library_import_path in _download_additional_modules.
Before changes, when error message generated by _download_additional_modules prompts the user to install nltk, rouge_score and absl (wrong name, it should be called "absl-py"), the error message prints out the comments from metrics/rouge/rouge.py, rather than actual lib_path. Please see the image below.

"Here to have a nice missing dependency error message" is stored in lib_path and it is printed out.
These two "Here to have a nice missing dependency error message" are from metrics/rouge/rouge.py. Remove these two comments can solve the issues.
Also, pip install absl, as advised by error message, would result in error. It should be "absl-py"
After this PR, the error message would output correct pip commands that could be used by users directly and provide information they need.
@lhoestq
@sgugger
@Rocketknight1
(sorry to bother you again, this pr is also important. I would like to let you know if other contributors in this repo are not able to review my pr)