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
Ensure that you have a supported Python version installed on your local machine before running `dev_setup.sh`. `py-orca` currently supports Python version 3.10 and 3.11. You can [install](https://github.com/pyenv/pyenv?tab=readme-ov-file#installation)`pyenv`for easy Python version management.
114
+
115
+
113
116
5. Install [pre-commit] hooks:
114
117
115
118
```
116
-
pipenv run pre-commit install
119
+
pre-commit install
117
120
```
118
121
119
122
`orca` comes with a lot of hooks configured to automatically help the
Copy file name to clipboardExpand all lines: README.md
-15Lines changed: 0 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,21 +24,6 @@ Refer to [`.env.example`](.env.example) for the format of their values as well a
24
24
25
25
Once your environment is set, you can create a virtual environment, install the Python dependencies, and run the demonstration script (after downloading it) as follows. Note that you will need to update the `s3_prefix` parameter so that it points to an S3 bucket that is accessible to your Tower workspace.
26
26
27
-
### Using pipenv
28
-
```bash
29
-
# Create and activate a Python virtual environment (tested with Python 3.11)
30
-
pipenv shell
31
-
32
-
# Install Python dependencies
33
-
pipenv install
34
-
35
-
# If development dependencies are required to be installed
36
-
pipenv install -d
37
-
38
-
# Run the script using an example dataset
39
-
python3 demo.py run --dataset_id 'syn51514585' --s3_prefix 's3://orca-service-test-project-tower-bucket/outputs'
40
-
```
41
-
42
27
### Manually creating a virtual environment
43
28
```bash
44
29
# Create and activate a Python virtual environment (tested with Python 3.10)
0 commit comments