You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Motivation
Improves Installation instructions
# Content
Modifies how dependencies are installed
# Testing
Tested by running locally
# Please check the following before marking your PR as ready for review
- [ ] I have added tests for my changes
- [ ] I have updated the documentation or added new documentation as
needed
Copy file name to clipboardExpand all lines: codegen-examples/examples/swebench_agent_run/README.md
+10-9Lines changed: 10 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,32 +1,33 @@
1
1
# INSTRUCTIONS
2
2
3
-
1. Create a `.env` file in the root directory and add your API keys.
3
+
1. Create a `.env` file in the `swebench_agent_run` directory (codegen-examples/examples/swebench_agent_run) and add your API keys.
4
4
5
5
1. cd into the `codegen-examples/examples/swebench_agent_run` directory
6
6
7
7
1. Create a `.venv` with `uv venv` and activate it with `source .venv/bin/activate`
8
8
9
+
1. Install the dependencies with `uv pip install .`
10
+
9
11
1. Install the codegen dependencies with `uv add codegen`
10
12
11
-
- Note: If you'd like to install the dependencies in the global environment, you can use `uv pip install -e ../../../`. This will allow you to test modifications to the codegen codebase. You will need to run `uv pip install -e ../../../` each time you make changes to the codebase.
13
+
- Note: If you'd like to install the dependencies using the global environment, use `uv pip install -e ../../../` instead of `uv pip install .`. This will allow you to test modifications to the codegen codebase. You will need to run `uv pip install -e ../../../` each time you make changes to the codebase.
12
14
13
-
5. Ensure that you have a modal account and profile set up. If you don't have one, you can create one at https://modal.com/
15
+
6. Ensure that you have a modal account and profile set up. If you don't have one, you can create one at https://modal.com/
0 commit comments