-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
53 lines (32 loc) · 1.27 KB
/
requirements.txt
File metadata and controls
53 lines (32 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Installing pip dependencies
It is strongly recommended to create a new Python virtual environment for this unit to prevent cross-dependency issues.
* Open the terminal and run the following command to create a brand new Python virtual environment for this unit.
```shell
conda create -n ethereum python=3.7 anaconda
```
* Activate the new environment.
```shell
conda activate ethereum
```
* Use the `pip install` command to download and install the `web3.py` module.
```shell
pip install web3
```

* Use the `pip install` command to download and install the `bit` module.
```shell
pip install bit
```

## Verify Installation
Once the `web3.py` and `bit` modules are downloaded and installed, verify that both installations completed successfully.
* Use the `conda list package_name` command, substituting `package_name` with `web3` to verify if the `web3` library installed successfully.
```shell
conda list web3
```

* Use the `conda list package_name` command, substituting `package_name` with `bit` to verify if the `bit` library installed successfully.
```shell
conda list bit
```
