Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove redundant line in install.sh #486

Merged
merged 5 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -180,4 +180,4 @@ wandb
.vscode
api_keys.json
prompting/api/api_keys.json
AutoAWQ
AutoAWQ/
5 changes: 1 addition & 4 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,10 @@ poetry config virtualenvs.in-project true
# Install the project dependencies
poetry install

git clone git@github.com:casper-hansen/AutoAWQ.git && cd AutoAWQ && poetry run pip install -e . && cd ..
git clone https://github.com/casper-hansen/AutoAWQ.git && cd AutoAWQ && poetry run pip install -e . && cd ..

poetry run pip install flash-attn --no-build-isolation

# Updating the package list and installing jq and npm
apt update && apt install -y jq npm

# Check if jq is installed and install it if not
if ! command -v jq &> /dev/null
then
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ exclude = '''
| \.mypy_cache
| \.tox
| \.venv
| AutoAWQ
| _build
| buck-out
| build
Expand Down
Loading