Replies: 3 comments 1 reply
-
Same on my win pc, seems like a common problem but not finding much info on what to try. Someone said discord, but not finding much there either. |
Beta Was this translation helpful? Give feedback.
-
@koush any ideas ? Thanks |
Beta Was this translation helpful? Give feedback.
-
@Wildcat1 - did you ever figure this out? |
Beta Was this translation helpful? Give feedback.
-
I've tried installing this for MAC using the instructions here (https://github.com/koush/scrypted/wiki/Installation:-Mac) and even though that appears to complete correctly whenever I try and access https://localhost:10443/ it just fails, no request to allow certificate etc, nothing.Help in resolving this is appreciated. Running this on a Mac with Catalina. For reference, I have HomeBridge running without issue. Thanks
For reference, here is the last command line I see listed before the Scrypted install ends:
==> Installing gst-plugins-ugly
==> Pouring gst-plugins-ugly--1.20.1.catalina.bottle.tar.gz
🍺 /usr/local/Cellar/gst-plugins-ugly/1.20.1: 58 files, 1.7MB
==> Running brew cleanup gst-plugins-ugly...
Error during previous command. Ignoring.
Also see this:
echo "Installing Scrypted Launch Agent..."
RUN mkdir -p ~/Library/LaunchAgents
NODE_16_PATH=$(brew --prefix node@16)
if [ ! -d "$NODE_16_PATH" ]
then
echo "Unable to determine node@16 path."
exit 1
fi
NODE_16_BIN_PATH=$NODE_16_PATH/bin
if [ ! -d "$NODE_16_BIN_PATH" ]
then
echo "Unable to determine node@16 bin path."
echo "$NODE_16_BIN_PATH does not exist."
exit 1
fi
export PATH=$NODE_16_BIN_PATH:$PATH
NPX_PATH=$NODE_16_BIN_PATH/npx
if [ ! -f "$NPX_PATH" ]
then
echo "Unable to find npx."
exit 1
fi
echo "Installing Scrypted..."
RUN $NPX_PATH -y scrypted install-server
BREW_PREFIX=$(brew --prefix)
if [ -z "$BREW_PREFIX" ]
then
echo "Unable to determine brew prefix."
exit 1
fi
Beta Was this translation helpful? Give feedback.
All reactions