Closed seeker-3 closed 1 month ago
Sorry about that. The full
flag is actually new. I've just published a 0.13.0-dev.2
, which should have the feature available.
Ah, that makes sense, so specify the version as well:
cargo install uiua --version 0.13.0-dev.2 --features full
Thank you, I'm looking forward to trying it out!
If you use one of the major OSs, you can download a pre-built binary of this version from the releases page.
Ah yeah, that's much easier. I was just seeing if I could get it working in a docker container for fun, so I'm using Ubuntu. This seemed to do the trick:
FROM ubuntu
ENV LANG=C.UTF-8
ENV LANGUAGE=en_US:en
ENV LC_ALL=C.UTF-8
RUN apt-get update
RUN apt-get -y upgrade
RUN apt-get -y install curl
RUN bash -c "$(curl -fsSL https://raw.github.com/seeker-3/what-the-dock/main/install.bash)"
RUN apt-get -y install \
unzip \
libasound2t64
RUN apt-get autoremove
RUN apt-get clean
RUN apt-get autoclean
RUN apt-get -f install
# Install uiua
RUN curl -fsSL -o uiua.zip https://github.com/uiua-lang/uiua/releases/download/0.13.0-dev.2/uiua-bin-x86_64-unknown-linux-gnu.zip
RUN unzip uiua.zip
RUN rm uiua.zip
RUN mkdir -p /usr/local/bin
RUN mv uiua /usr/local/bin/uiua
Thanks for the help!
I went to the documentation page and followed the instructions:
and got
has the
full
feature flag been deprecated?