Click here to Skip to main content
15,887,776 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
I am trying to install `V8` on my Ubuntu-Server 16.04(arm7-sun8i), but before that, it says to install `depot_tools`. So I tried to do what this page says step-by-step: http://commondatastorage.googleapis.com/chrome-infra-docs/flat/depot_tools/docs/html/depot_tools_tutorial.html#_setting_up

inside `home/m` :
`git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git`

Added this line to ` ~/.bashrc `
`PATH=$PATH:/home/m`
Also ran this command: ` export PATH=$PATH:/home/m`

Ran all these commands with replaced by my information:


$ git config --global user.name "John Doe"
$ git config --global user.email "jdoe@email.com"
$ git config --global core.autocrlf false
$ git config --global core.filemode false
$ # and for fun!
$ git config --global color.ui true

What I have tried:

But at `TL;DR` step when I try to run this command: `fetch {chromium,...}`
the result is:
`-bash: fetch: command not found
`
I am not an advanced Linux user and need `depot_tools` to install `V8` for another project! So please help me simplify!

Thank you a lot
Posted
Updated 27-Nov-17 22:33pm

1 solution

The message is merely telling you that there is no such command as "fetch" in the bash shell, and there is no executable file with that name in any of the search paths. So you need to go back to the documentation to find out exactly what that part of the script needs in order to run successfully.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900