I tried to install the new simpler mapillary_tools on my Ubuntu (16.04).
All seemed to go pretty well with installing the dependencies but the actual installation of the tools gives errors.
Running
pip install git+https://github.com/mapillary/mapillary_tools
I get the following error message:
Command “/usr/bin/python -u -c “import setuptools, tokenize;file=‘/tmp/pip-install-0PFBTn/Pillow/setup.py’;f=getattr(tokenize, ‘open’, open)(file);code=f.read().replace(‘\r\n’, ‘\n’);f.close();exec(compile(code, file, ‘exec’))” install --record /tmp/pip-record-Go8xJS/install-record.txt --single-version-externally-managed --compile” failed with error code 1 in /tmp/pip-install-0PFBTn/Pillow/
For additional info:
When I ran
python get-pip.py
I got an error message
Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: ‘/usr/local/lib/python2.7/dist-packages/pip’
Consider using the--user
option or check the permissions.
which I (at least thought) I tackled by running addind “–user” to the end of the command, hence running
python get-pip.py --user
which seemed to render success
Successfully installed pip-18.0 setuptools-40.0.0 wheel-0.31.1
Same issue happened with installing piexif and same fix worked(?).
pip install git+https://github.com/mapillary/Piexif --user
resulted into
Successfully installed piexif-1.0.13m
And that’s where my (supposed) luck ended with the error noted on the very top.
Now, I realized that putting the --user option added to the end didn’t seem to be the very right thing to do. So I went back and re-did all the steps. Only Pillow had not been installed and running that with
pip install --user Pillow
notes now that it too is installed.
But the error message installing mapillary_tools stays the same.
I also tried to do the installation in the virtualenv but to no avail. Same error
Command “/home/jaakko/env/bin/python3 -u -c “import setuptools, tokenize;file=‘/tmp/pip-install-3zcmio41/Pillow/setup.py’;f=getattr(tokenize, ‘open’, open)(file);code=f.read().replace(‘\r\n’, ‘\n’);f.close();exec(compile(code, file, ‘exec’))” install --record /tmp/pip-record-kt0oifpr/install-record.txt --single-version-externally-managed --compile --install-headers /home/jaakko/env/include/site/python3.5/Pillow” failed with error code 1 in /tmp/pip-install-3zcmio41/Pillow/
Any thoughts, anyone? Would be great to finally be able to upload the action cam photos that I’ve taken during the past two years.