hi all,<\/p>\n
so made a script to install opencue on windows, the pre reqs you need are python 3.11.9 and Visual Studio 2022 Build Tools with c++<\/p>\n
once you done that, heres the batch script<\/p>\n
@echo off\nmkdir c:\\opencue\nmkdir c:\\opencue\\logs\ncd c:\\opencue\ncurl -OL https://github.com/AcademySoftwareFoundation/OpenCue/releases/download/v1.0.0/cueadmin-1.0.0-all.tar.gz\ncurl -OL https://github.com/AcademySoftwareFoundation/OpenCue/releases/download/v1.0.0/cuegui-1.0.0-all.tar.gz\ncurl -OL https://github.com/AcademySoftwareFoundation/OpenCue/releases/download/v1.0.0/cuesubmit-1.0.0-all.tar.gz\ncurl -OL https://github.com/AcademySoftwareFoundation/OpenCue/releases/download/v1.0.0/pycue-1.0.0-all.tar.gz\ncurl -OL https://github.com/AcademySoftwareFoundation/OpenCue/releases/download/v1.0.0/pyoutline-1.0.0-all.tar.gz\ncurl -OL https://github.com/AcademySoftwareFoundation/OpenCue/releases/download/v1.0.0/rqd-1.0.0-all.tar.gz\ndir /a-d /b | FINDSTR /V files.txt > files.txt\nfor /F %%h in (files.txt) do tar -xvzf %%h\npython -m venv venv\ndir /ad /b | FINDSTR /V venv | FINDSTR /V logs > dirs.txt\nfor /F %%d in (dirs.txt) do cd c:\\opencue\\%%d & c:\\opencue\\venv\\Scripts\\activate & pip install -r c:\\opencue\\%%d\\requirements.txt -r c:\\opencue\\%%d\\requirements_gui.txt& python setup.py install\n<\/code><\/pre>\ni get couple of errors when i run it tho, here they are<\/p>\n
x cuegui-1.0.0-all/cuegui/images/crystal/icons.qrc: Can't create '\\\\?\\c:\\opencue\\cuegui-1.0.0-all\\cuegui\\images\\crystal\\icons.qrc': Invalid argument\n\nx cuegui-1.0.0-all/cuegui/images/bluecurve/icons.qrc: Can't create '\\\\?\\c:\\opencue\\cuegui-1.0.0-all\\cuegui\\images\\bluecurve\\icons.qrc': Invalid argument\n\ntar: Error exit delayed from previous errors\n<\/code><\/pre>\nyou can try this yourself if want so the errors are extracting the tar<\/p>\n
can you spot why its untaring some but some i get errors<\/p>\n
thanks,
\nrob<\/p>","upvoteCount":1,"answerCount":4,"datePublished":"2024-10-31T17:51:21.894Z","author":{"@type":"Person","name":"robertkwild","url":"https://community.spiceworks.com/u/robertkwild"},"suggestedAnswer":[{"@type":"Answer","text":"
hi all,<\/p>\n
so made a script to install opencue on windows, the pre reqs you need are python 3.11.9 and Visual Studio 2022 Build Tools with c++<\/p>\n
once you done that, heres the batch script<\/p>\n
@echo off\nmkdir c:\\opencue\nmkdir c:\\opencue\\logs\ncd c:\\opencue\ncurl -OL https://github.com/AcademySoftwareFoundation/OpenCue/releases/download/v1.0.0/cueadmin-1.0.0-all.tar.gz\ncurl -OL https://github.com/AcademySoftwareFoundation/OpenCue/releases/download/v1.0.0/cuegui-1.0.0-all.tar.gz\ncurl -OL https://github.com/AcademySoftwareFoundation/OpenCue/releases/download/v1.0.0/cuesubmit-1.0.0-all.tar.gz\ncurl -OL https://github.com/AcademySoftwareFoundation/OpenCue/releases/download/v1.0.0/pycue-1.0.0-all.tar.gz\ncurl -OL https://github.com/AcademySoftwareFoundation/OpenCue/releases/download/v1.0.0/pyoutline-1.0.0-all.tar.gz\ncurl -OL https://github.com/AcademySoftwareFoundation/OpenCue/releases/download/v1.0.0/rqd-1.0.0-all.tar.gz\ndir /a-d /b | FINDSTR /V files.txt > files.txt\nfor /F %%h in (files.txt) do tar -xvzf %%h\npython -m venv venv\ndir /ad /b | FINDSTR /V venv | FINDSTR /V logs > dirs.txt\nfor /F %%d in (dirs.txt) do cd c:\\opencue\\%%d & c:\\opencue\\venv\\Scripts\\activate & pip install -r c:\\opencue\\%%d\\requirements.txt -r c:\\opencue\\%%d\\requirements_gui.txt& python setup.py install\n<\/code><\/pre>\ni get couple of errors when i run it tho, here they are<\/p>\n
x cuegui-1.0.0-all/cuegui/images/crystal/icons.qrc: Can't create '\\\\?\\c:\\opencue\\cuegui-1.0.0-all\\cuegui\\images\\crystal\\icons.qrc': Invalid argument\n\nx cuegui-1.0.0-all/cuegui/images/bluecurve/icons.qrc: Can't create '\\\\?\\c:\\opencue\\cuegui-1.0.0-all\\cuegui\\images\\bluecurve\\icons.qrc': Invalid argument\n\ntar: Error exit delayed from previous errors\n<\/code><\/pre>\nyou can try this yourself if want so the errors are extracting the tar<\/p>\n
can you spot why its untaring some but some i get errors<\/p>\n
thanks,
\nrob<\/p>","upvoteCount":1,"datePublished":"2024-10-31T17:51:21.990Z","url":"https://community.spiceworks.com/t/installing-opencue-on-windows/1136958/1","author":{"@type":"Person","name":"robertkwild","url":"https://community.spiceworks.com/u/robertkwild"}},{"@type":"Answer","text":"