-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathPrerequisites.txt
More file actions
executable file
·24 lines (24 loc) · 959 Bytes
/
Prerequisites.txt
File metadata and controls
executable file
·24 lines (24 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
To use the ipfs_datatransmission, the following software must be installed on your computer:
- IPFS (Desktop or CLI, doesn't matter.
https://docs.ipfs.io/install/
- Enable "Libp2pStreamMounting" in IPFS:
Desktop Version/WebUI: on the Settings tab, scroll down to "IPFS CONFIG" and change the line that reads:
"Libp2pStreamMounting": false,
to:
"Libp2pStreamMounting": true,
Click the "Save" button and restart IPFS.
CLI Version: run:
ipfs config --json Experimental.Libp2pStreamMounting true
- Python3, version 3.5 or above
https://www.python.org/downloads/
- Pip for Python3:
https://pip.pypa.io/en/stable/installing/
- install prerequisite Python modules:
sudo apt install python3-distutils
pip3 install setuptools
pip3 install wheel
pip3 install multiaddr
pip3 install appdirs
pip3 install idna
pip3 install httpcore
pip3 install httpx