Skip to content

Commit

Permalink
Merge pull request #24 from toobus/doc-update
Browse files Browse the repository at this point in the history
addition to documentation
  • Loading branch information
ChrisTheCoolHut authored Aug 24, 2019
2 parents 05ea051 + 1ba73a3 commit 3e326ea
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,30 @@ Slides from the talk can be found [here](https://media.defcon.org/DEF%20CON%2027
## Setup

Firmware slap should be run in a virtual environment. It has been tested on Python3.6
```bash
sudo apt install python3-virtualenv
virtualenv -p python3 fwslap
source fwslap/bin/activate
```
-- or --

```bash
cd ~
mkdir .virtualenvs
pip install virtualenv
which virtualenv #note path warnings
pip install virtualenvwrapper
echo "export PATH=$PATH:~/.local/bin" >> ~/.bashrc
echo "export WORKON_HOME=~/.virtualenvs" >> ~/.bashrc
echo "source ~/.local/bin/virtualenvwrapper.sh" >> ~/.bashrc

#usually best here to open new terminal

mkvirtualenv fwslap -p /usr/bin/python3
workon fwslap
```


```bash
python setup.py install
```
Expand Down

0 comments on commit 3e326ea

Please sign in to comment.