We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using Ubuntu 14.04.3 LTS (Edubuntu).
I cloned the repo into ~/Documents/Foo BAR/asdf/Install-OpenCV and ran the opencv_latest.sh script found on the Ubuntu directory.
~/Documents/Foo BAR/asdf/Install-OpenCV
opencv_latest.sh
Ubuntu
It failed because it couldn't find some .hpp file (can't remember the name now and I'm very busy, sorry).
.hpp
I found the script had put it into ~/Documents/Foo\ BAR/asdf/Install-OpenCV/somewhere/file.hpp
~/Documents/Foo\ BAR/asdf/Install-OpenCV/somewhere/file.hpp
Note the Foo\ BAR instead of Foo BAR. There's obviously an escaping problem somewhere.
Foo\ BAR
Foo BAR
Then I copied the contents from Foo\ BAR into Foo BAR and ran the script again.
It failed because mkdir couldn't create the build directory (it already existed).
build
So my workaround was to clone the repo again into /tmp/Install-OpenCV, instead.
/tmp/Install-OpenCV
Would including an if statement before the mkdir one to check the directory doesn't already exist also make sense? I'm not sure.
if
mkdir
Thanks for your efforts.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm using Ubuntu 14.04.3 LTS (Edubuntu).
I cloned the repo into
~/Documents/Foo BAR/asdf/Install-OpenCV
and ran theopencv_latest.sh
script found on theUbuntu
directory.It failed because it couldn't find some
.hpp
file (can't remember the name now and I'm very busy, sorry).I found the script had put it into
~/Documents/Foo\ BAR/asdf/Install-OpenCV/somewhere/file.hpp
Note the
Foo\ BAR
instead ofFoo BAR
. There's obviously an escaping problem somewhere.Then I copied the contents from
Foo\ BAR
intoFoo BAR
and ran the script again.It failed because mkdir couldn't create the
build
directory (it already existed).So my workaround was to clone the repo again into
/tmp/Install-OpenCV
, instead.Would including an
if
statement before themkdir
one to check the directory doesn't already exist also make sense? I'm not sure.Thanks for your efforts.
The text was updated successfully, but these errors were encountered: