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
Documentation: Ubuntu and Debian HTML pages have double line breaks so apt-get install x \ ... (next line) is treated as a new command, which fails
#87
Open
Johnsel opened this issue
Sep 11, 2024
· 2 comments
johnsimons@john-ubuntu2404-scopehal:~$ sudo apt install build-essential git cmake pkgconf libgtkmm-3.0-dev \
libcairomm-1.0-dev libsigc++-2.0-dev libyaml-cpp-dev catch2 libglfw3-dev curl xzip
[sudo] password for johnsimons:
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package
libcairomm-1.0-dev: command not found
If you look closely in a text program you will see that tex sneakily prefixed the \ with a \LF and postfixed it with another \LF thus putting the libcairomm-1.0-dev on a new line and breaking the multiline apt-get. This issue is also present for Debian, and possibly other (all?) OS'
The text was updated successfully, but these errors were encountered:
Section 3.3 (Windows) Step 4. (Install Vulkan dependencies) is also affected:
pacman -S mingw-w64-ucrt-x86_64-vulkan-headers mingw-w64-ucrt-x86_64-vulkan-loader mingw-w64-ucrt-x86_64-shaderc \
mingw-w64-ucrt-x86_64-glslang mingw-w64-ucrt-x86_64-spirv-tools
Resulting error in Msys:
cedric@DESKTOP-LRFL83R UCRT64 ~
$ pacman -S mingw-w64-ucrt-x86_64-vulkan-headers mingw-w64-ucrt-x86_64-vulkan-loader mingw-w64-ucrt-x86_64-shaderc
mingw-w64-ucrt-x86_64-glslang mingw-w64-ucrt-x86_64-spirv-tools
error: target not found:
-bash: mingw-w64-ucrt-x86_64-glslang: command not found
Copying and pasting both lines separate does work correctly:
cedric@DESKTOP-LRFL83R UCRT64 ~
$ pacman -S mingw-w64-ucrt-x86_64-vulkan-headers mingw-w64-ucrt-x86_64-vulkan-loader mingw-w64-ucrt-x86_64-shaderc mingw-w64-ucrt-x86_64-glslang mingw-w64-ucrt-x86_64-spirv-tools
resolving dependencies...
looking for conflicting packages...
Copied from https://www.ngscopeclient.org/manual/GettingStarted.html
If you look closely in a text program you will see that tex sneakily prefixed the \ with a \LF and postfixed it with another \LF thus putting the libcairomm-1.0-dev on a new line and breaking the multiline apt-get. This issue is also present for Debian, and possibly other (all?) OS'
The text was updated successfully, but these errors were encountered: