forked from Significant-Gravitas/AutoGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix requirements-alternative.txt to include the original requirements…
….txt
- Loading branch information
Showing
1 changed file
with
8 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,14 @@ | ||
# I wasn't having any luck installing the requirements.txt file in Mac or Linux, | ||
# so I unpinned and installed, and got these versions: | ||
beautifulsoup4==4.9.3 | ||
colorama==0.4.6 | ||
dirtyjson==1.0.8 | ||
# I wasn't having any luck installing the requirements.txt file in Mac or Linux | ||
# But this seems to work. | ||
# The biggest difference is docker 5 instead of 6, because of this silliness: | ||
# | ||
# The conflict is caused by: | ||
# The user requested requests>=2.26.0 | ||
# docker 6.0.1 depends on requests>=2.26.0 | ||
# googlesearch-python 1.1.0 depends on requests==2.25.1 | ||
docker==5.0.3 | ||
googlesearch-python==1.1.0 | ||
openai==0.27.2 | ||
playsound==1.3.0 | ||
pyyaml==6.0 | ||
readability-lxml==0.8.1 | ||
requests==2.25.1 | ||
|
||
# I'd love to fix this in a cleaner way | ||
|
||
# Now go ahead and install the rest of what requirements.txt says: | ||
-r requirements.txt |