-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
[BUG] Can't find tug and libgit2.so.1.3 #112
Comments
I could indeed reproduce that issue, same here. |
A couple of additional data points, on Ubuntu sudo apt install libgit2-dev We end up with: find /usr -name "*libgit2*" 14s lucas@development-lucas
/usr/lib/x86_64-linux-gnu/pkgconfig/libgit2.pc
/usr/lib/x86_64-linux-gnu/libgit2.a
/usr/lib/x86_64-linux-gnu/libgit2.so
/usr/lib/x86_64-linux-gnu/libgit2.so.28
/usr/lib/x86_64-linux-gnu/libgit2.so.0.28.4
/usr/share/doc/libgit2-dev
/usr/share/doc/libgit2-28 Setting |
What did the trick for me (temporary solution): git clone https://github.com/libgit2/libgit2
cd libgit2
git checkout tags/v1.3.0
mkdir build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local
sudo cmake --build . --target install
# Add to shell profile
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib
export PATH=${PATH}:/opt/local/bin |
Yup, did the exact same thing as a workaround (but forgot to come here to comment of course) |
Indeed, libgit2 1.3. is not yet in Ubuntu 20.04.3 LTS default sources |
Should be fixed by version |
Describe the bug
tug
is not available in Ubuntu default PATHlibgit2
libTo Reproduce
After installation on Ubuntu with:
tug
is not find in the PATH. Looking at the output ofdpkg -L turbogit
:it seems that
/opt/local/bin
is not in Ubuntu default PATH.After having corrected that, launching
tug
gives:Installing
libgit2
with:Did not solve the issue unfortunately :/
Versions
The text was updated successfully, but these errors were encountered: