You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nodes/full-nodes/basic-setup.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,13 +12,13 @@ To install Lotus on your computer, follow these steps:
12
12
2. Once you have downloaded the binary file, extract the contents to a directory of your choice. For example, if you are using Linux, you can extract the contents to the `/usr/local/bin directory` by running the command:
13
13
14
14
```sh
15
-
sudo tar -C /usr/local/bin -xzf lotus-1.32.3-linux-amd64.tar.gz
15
+
sudo tar -C /usr/local/bin -xzf lotus-1.33.0-linux-amd64.tar.gz
16
16
```
17
17
18
18
3. After extracting the contents, navigate to the `lotus` directory in your terminal. For example, if you extracted the contents to `/usr/local/bin`, you can navigate to the lotus directory by running the command:
19
19
20
20
```sh
21
-
cd /usr/local/bin/lotus-1.32.3
21
+
cd /usr/local/bin/lotus-1.33.0
22
22
```
23
23
24
24
4. Run the `lotus` binary file to start the Lotus daemon. You can do this by running the command:
Copy file name to clipboardExpand all lines: nodes/lite-nodes/spin-up-a-lite-node.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -73,12 +73,12 @@ Before we can build the Lotus binaries, we need to follow a few pre-build steps.
73
73
This should output something like:
74
74
75
75
```output
76
-
v1.32.3
76
+
v1.33.0
77
77
```
78
78
3. Using the value returned from the previous command, checkout to the latest release branch:
79
79
80
80
```shell
81
-
git checkout v1.32.3
81
+
git checkout v1.33.0
82
82
```
83
83
4. Done! You can move on to the [Build](https://docs.filecoin.io/nodes/lite-nodes/spin-up-a-lite-node/#build-the-binary) section.
84
84
{% endtab %}
@@ -99,12 +99,12 @@ Before we can build the Lotus binaries, we need to follow a few pre-build steps.
99
99
This should output something like:
100
100
101
101
```output
102
-
v1.32.3
102
+
v1.33.0
103
103
```
104
104
3. Using the value returned from the previous command, checkout to the latest release branch:
105
105
106
106
```shell
107
-
git checkout v1.32.3
107
+
git checkout v1.33.0
108
108
```
109
109
4. Create the necessary environment variables to allow Lotus to run on M1 architecture:
110
110
@@ -132,12 +132,12 @@ Before we can build the Lotus binaries, we need to follow a few pre-build steps.
132
132
This should output something like:
133
133
134
134
```output
135
-
v1.32.3
135
+
v1.33.0
136
136
```
137
137
3. Using the value returned from the previous command, checkout to the latest release branch:
138
138
139
139
```shell
140
-
git checkout v1.32.3
140
+
git checkout v1.33.0
141
141
```
142
142
4. If your processor was released later than an AMD Zen or Intel Ice Lake CPU, enable SHA extensions by adding these two environment variables. If in doubt, ignore this command and move on to [the next section](https://docs.filecoin.io/nodes/lite-nodes/spin-up-a-lite-node/#build-the-binary).
143
143
@@ -175,7 +175,7 @@ The last thing we need to do to get our node setup is to build the package. The
175
175
This will output something like:
176
176
177
177
```plaintext
178
-
lotus version 1.32.3+mainnet+git.1ff3b360b
178
+
lotus version 1.33.0+mainnet+git.1ff3b360b
179
179
```
180
180
{% endtab %}
181
181
@@ -200,7 +200,7 @@ The last thing we need to do to get our node setup is to build the package. The
0 commit comments