spcified flash-attn version at 2.3.4 #30
Open
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.
Summary
By updating the
Quick Start
section ofREADME.md
, this PR fixes a dependency issue during environment setup:flash-attn
version to 2.3.4Background
On 2025/8/30, I set up the environment on AWS Lambda Cloud (A100 40GB) following the Quick Start instructions in
README.md
.During this process, I faced the following issue:
flash-attn
version was not specified, so the latest version (2.8.3) was installed.This caused conflicts with other dependencies and could not be installed successfully.
Reference (logs with errors, simplified):
original_setup_cleansed.log
Solution
flash-attn
to version 2.3.4Quick Start
section inREADME.md
After this change, the environment setup completed without errors.
Reference (logs after fix, simplified):
suggested_setup_cleansed.log
Note
The logs also include changes in
pyproject.toml
(pinningnumpy
and addingdecord
).However, this PR only modifies README.md.
The changes to
pyproject.toml
will be submitted in a separate PR.