Skip to content

Commit

Permalink
Merge pull request #104 from bitkarrot/add-pipenv
Browse files Browse the repository at this point in the history
add docs and line for installing virtualenv
  • Loading branch information
rsafier authored May 22, 2022
2 parents 5157f3f + f8be59d commit 923bd53
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -375,3 +375,6 @@ bos/node/credentials.json

get-pip.py

# don't check in virtualenv, usually named env or venv
env
venv
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,21 @@ This package will setup a bitcoind, lnd, and tor daemon that will connect to the
***
### Clone Repo & Install Requirements
***


If you already have *virtualenv* installed, great. If not, and you are new to using Python, see this article about why its recommended to use a
[virtualenv](https://www.freecodecamp.org/news/how-to-setup-virtual-environments-in-python/)


```
git clone https://github.com/PLEBNET-PLAYGROUND/plebnet-playground-docker --config core.autocrlf=input
cd plebnet-playground-docker
pip3 install virtualenv
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
```

Follow [these instructions](https://docs.docker.com/compose/install/#install-compose) to install the `docker compose` subcommand on your system (Mac, Windows, Windows Server 2016, or Linux systems).

### Supported System Architectures
Expand Down

0 comments on commit 923bd53

Please sign in to comment.