I am working from a Samsung Chromebook 3 running what is similar to an ubuntu chroot via crouton. I have python 3.5 located at /usr/bin/python3.5 and it's aliased in my .bashrc with alias python='/usr/bin/python3.5 and executing python --version from the bash shell will return back the python version.
When trying to install NERDTree with apt-vim, here is the output:
(xenial)caley@localhost:~$ apt-vim install -y https://github.com/scrooloose/nerdtree.git
/usr/bin/env: 'python': No such file or directory
If I prefix the above apt-vim install command with python then everything works fine. Should I modify .vimpkg/bin/apt-vim to point to /usr/bin/python3.5 or is there a better solution for this?
I am working from a Samsung Chromebook 3 running what is similar to an ubuntu chroot via crouton. I have python 3.5 located at
/usr/bin/python3.5and it's aliased in my.bashrcwithalias python='/usr/bin/python3.5and executingpython --versionfrom the bash shell will return back the python version.When trying to install NERDTree with
apt-vim, here is the output:If I prefix the above
apt-vim installcommand with python then everything works fine. Should I modify.vimpkg/bin/apt-vimto point to/usr/bin/python3.5or is there a better solution for this?