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
docker cp opencv-extract:/usr/local/lib/python${{ env.PYTHON_VERSION }}/site-packages/cv2 ./opencv-artifacts/cv2 || echo "cv2 not found in system site-packages"
64
+
65
+
echo "Copying OpenCV source directories..."
66
+
# Copy opencv and opencv_contrib source directories
67
+
docker cp opencv-extract:/workspace/opencv ./opencv-artifacts/ || echo "opencv source not found"
68
+
docker cp opencv-extract:/workspace/opencv_contrib ./opencv-artifacts/ || echo "opencv_contrib source not found"
69
+
70
+
echo "Cleaning up container..."
71
+
docker rm opencv-extract
72
+
73
+
echo "Contents of opencv-artifacts:"
74
+
ls -la ./opencv-artifacts/
75
+
76
+
- name: Create tarball artifact
77
+
run: |
78
+
echo "Creating opencv-cuda-release.tar.gz..."
79
+
cd ./opencv-artifacts
80
+
tar -czf ../opencv-cuda-release.tar.gz . || echo "Failed to create tarball"
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,15 +29,15 @@ This repo also includes a WebRTC server and UI that uses comfystream to support
29
29
30
30
Refer to [.devcontainer/README.md](.devcontainer/README.md) to setup ComfyStream in a devcontainer using a pre-configured ComfyUI docker environment.
31
31
32
-
For other installation options, refer to [Install ComfyUI and ComfyStream](https://pipelines.livepeer.org/docs/technical/install/local-testing) in the Livepeer pipelines documentation.
32
+
For other installation options, refer to [Install ComfyUI and ComfyStream](https://docs.comfystream.org/technical/get-started/install) in the ComfyStream documentation.
33
33
34
34
For additional information, refer to the remaining sections below.
35
35
36
36
### Docker Image
37
37
38
38
You can quickly deploy ComfyStream using the docker image `livepeer/comfystream`
39
39
40
-
Refer to the documentation at [https://pipelines.livepeer.org/docs/technical/getting-started/install-comfystream](https://pipelines.livepeer.org/docs/technical/getting-started/install-comfystream) for instructions to run locally or on a remote server.
40
+
Refer to the documentation at [https://docs.comfystream.org/technical/get-started/install](https://docs.comfystream.org/technical/get-started/install) for instructions to run locally or on a remote server.
0 commit comments