mirror of https://github.com/openXC7/prjxray.git
commit
9904aa4fc0
2
Makefile
2
Makefile
|
|
@ -9,7 +9,7 @@ env:
|
|||
virtualenv --python=python3 --system-site-packages env
|
||||
. env/bin/activate; pip install -r requirements.txt
|
||||
ln -sf $(PWD)/prjxray env/lib/python3.*/site-packages/
|
||||
python -c "import yaml" || (echo "Unable to find python-yaml" && exit 1)
|
||||
. env/bin/activate; python -c "import yaml" || (echo "Unable to find python-yaml" && exit 1)
|
||||
|
||||
build:
|
||||
git submodule update --init --recursive
|
||||
|
|
|
|||
12
README.md
12
README.md
|
|
@ -49,9 +49,19 @@ Creating HTML documentation:
|
|||
cd htmlgen
|
||||
python3 htmlgen.py
|
||||
|
||||
|
||||
(Option 1) - Install the Python environment locally
|
||||
|
||||
apt-get install virtualenv python3-virtualenv python3-yaml
|
||||
make env
|
||||
|
||||
(Option 2) - Install the Python environment globally
|
||||
|
||||
apt-get install python3-yaml
|
||||
sudo pip3 install -r requirements.txt
|
||||
|
||||
(Re-)creating the database:
|
||||
|
||||
sudo pip3 install -r requirements.txt
|
||||
cd fuzzers
|
||||
make -j$(nproc)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue