Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
dfb1ee66
Unverified
Commit
dfb1ee66
authored
Mar 20, 2023
by
mergify[bot]
Committed by
GitHub
Mar 20, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5140 from ethereum-optimism/qbzzt/230314-opstack-build
feat(docs/op-stack): Slightly simpler installation
parents
60e56b5e
9902541b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
getting-started.md
docs/op-stack/src/docs/build/getting-started.md
+5
-5
No files found.
docs/op-stack/src/docs/build/getting-started.md
View file @
dfb1ee66
...
@@ -39,12 +39,11 @@ This tutorial was checked on:
...
@@ -39,12 +39,11 @@ This tutorial was checked on:
| Software | Version | Installation command(s) |
| Software | Version | Installation command(s) |
| -------- | ---------- | - |
| -------- | ---------- | - |
| Ubuntu | 20.04 LTS | |
| Ubuntu | 20.04 LTS | |
| git | OS default | |
| git, curl, and make | OS default |
`sudo apt install -y git curl make`
|
| make | 4.2.1-1.2 |
`sudo apt install -y make`
| Go | 1.20 |
`sudo apt update`
<br>
`wget https://go.dev/dl/go1.20.linux-amd64.tar.gz`
<br>
`tar xvzf go1.20.linux-amd64.tar.gz`
<br>
`sudo cp go/bin/go /usr/bin/go`
<br>
`sudo mv go /usr/lib`
<br>
`echo export GOROOT=/usr/lib/go >> ~/.bashrc`
| Go | 1.20 |
`sudo apt update`
<br>
`wget https://go.dev/dl/go1.20.linux-amd64.tar.gz`
<br>
`tar xvzf go1.20.linux-amd64.tar.gz`
<br>
`sudo cp go/bin/go /usr/bin/go`
<br>
`sudo mv go /usr/lib`
<br>
`echo export GOROOT=/usr/lib/go >> ~/.bashrc`
| Node | 16.19.0 |
`curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -`
<br>
`sudo apt-get install -y nodejs`
| Node | 16.19.0 |
`curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -`
<br>
`sudo apt-get install -y nodejs
npm
`
| yarn | 1.22.19 |
`sudo npm install -g yarn`
| yarn | 1.22.19 |
`sudo npm install -g yarn`
| Foundry | 0.2.0 |
`curl -L https://foundry.paradigm.xyz | bash`
<br>
`
sudo bash
`
<br>
`foundryup`
| Foundry | 0.2.0 |
`curl -L https://foundry.paradigm.xyz | bash`
<br>
`
. ~/.bashrc
`
<br>
`foundryup`
## Build the Source Code
## Build the Source Code
...
@@ -74,7 +73,8 @@ We’re going to be spinning up an EVM Rollup from the OP Stack source code. Yo
...
@@ -74,7 +73,8 @@ We’re going to be spinning up an EVM Rollup from the OP Stack source code. Yo
1.
Build the various packages inside of the Optimism Monorepo.
1.
Build the various packages inside of the Optimism Monorepo.
```bash
```bash
make build
make op-node op-batcher
yarn build
```
```
### Build op-geth
### Build op-geth
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment