Closed TyOverby closed 5 years ago
This seems more like an issue with your environment than with this package.
I don't use Python a lot, but I'd guess that when you install a package to a random directory, how would the Python environment know about that? Maybe you just have to set $PYTHONPATH
first.
❯ python3 -c 'import sys; print(*sys.path, sep="\n")'
/usr/local/Cellar/python/3.7.2/Frameworks/Python.framework/Versions/3.7/lib/python37.zip
/usr/local/Cellar/python/3.7.2/Frameworks/Python.framework/Versions/3.7/lib/python3.7
/usr/local/Cellar/python/3.7.2/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
/usr/local/lib/python3.7/site-packages
/data/github/mhinz/neovim-remote master
❯ PYTHONPATH=./nvr-2.1.3 python3 -c 'import sys; print(*sys.path, sep="\n")'
/data/github/mhinz/neovim-remote/nvr-2.1.3
/usr/local/Cellar/python/3.7.2/Frameworks/Python.framework/Versions/3.7/lib/python37.zip
/usr/local/Cellar/python/3.7.2/Frameworks/Python.framework/Versions/3.7/lib/python3.7
/usr/local/Cellar/python/3.7.2/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload
/usr/local/lib/python3.7/site-packages
Oh nice, that appears to have fixed it; thanks!
When attempting to install with the --target option provided, I get the following error message:
Trying to run nvr anyway gives me this: