Skip to content

Commit

Permalink
termux.go: fix error not installing pip pkg.
Browse files Browse the repository at this point in the history
Signed-off-by: 明 <akariondev@gmail.com>
  • Loading branch information
whyakari authored May 14, 2024
1 parent 58a5b9e commit 4002b28
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkg/termux/termux.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ func IsTermux() bool {
func TermuxCommands() []string {
return []string{
"apt update",
"pkg install libllvm lua53 clang rust nodejs-lts git python neovim -y",
"pip install --upgrade python-pip --break-system-packages",
"pip install wheel pynvim neovim --break-system-packages",
"pkg in libllvm lua53 clang rust nodejs-lts git python neovim -y",
"pip install --upgrade python-pip",
"pip install wheel"
"pkg in python-pynvim -y",
"mkdir -p $HOME/.config/nvim",
"curl -fLo \"$HOME/.local/share/nvim/site/autoload/plug.vim\" --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim",
"rm -rf $HOME/nvim",
Expand Down

0 comments on commit 4002b28

Please # to comment.