-
Couldn't load subscription status.
- Fork 7.3k
fix: display logo image instead of initials in custom template (#222) #1327
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| Write-Host "Fixing pyperclip installation issue for gpt-engineer..." -ForegroundColor Green | ||
|
|
||
| # Update pip to latest version | ||
| Write-Host "Upgrading pip..." | ||
| python -m pip install --upgrade pip | ||
|
|
||
| # Install compatible setuptools version first | ||
| Write-Host "Installing compatible setuptools version..." | ||
| python -m pip install "setuptools>=45.0,<66.0" | ||
|
|
||
| # Install pyperclip 1.8.2 specifically to avoid canonicalize_version error | ||
| Write-Host "Installing pyperclip 1.8.2..." | ||
| python -m pip install "pyperclip>=1.8.2,<1.9.0" | ||
|
|
||
| # Install gpt-engineer in development mode | ||
| Write-Host "Installing gpt-engineer..." | ||
| python -m pip install -e . | ||
|
|
||
| Write-Host "✅ Installation completed successfully!" -ForegroundColor Green | ||
| Write-Host "You can now run: gpte projects/example" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| #!/bin/bash | ||
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consider adding 'set -e' after the shebang to exit immediately if a command fails. |
||
| echo "Fixing pyperclip installation issue for gpt-engineer..." | ||
|
|
||
| # Update pip to latest version | ||
| echo "Upgrading pip..." | ||
| pip install --upgrade pip | ||
|
|
||
| # Install compatible setuptools version first | ||
| echo "Installing compatible setuptools version..." | ||
| pip install "setuptools>=45.0,<66.0" | ||
|
|
||
| # Install pyperclip 1.8.2 specifically to avoid canonicalize_version error | ||
| echo "Installing pyperclip 1.8.2..." | ||
| pip install "pyperclip>=1.8.2,<1.9.0" | ||
|
|
||
| # Install gpt-engineer in development mode | ||
| echo "Installing gpt-engineer..." | ||
| pip install -e . | ||
|
|
||
| echo "✅ Installation completed successfully!" | ||
| echo "You can now run: gpte projects/example" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add a newline at the end of the file for consistency and to avoid potential issues. |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo detected: The command on line 20 reads "gpte projects/example". Should it be "gpt-engineer projects/example" (or the intended command)?