Skip to content

Commit

Permalink
Fix for broken Plotman dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
guydavis committed Dec 19, 2023
1 parent 36926d3 commit 9622c0d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion scripts/plotman_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ if [[ (${mode} =~ ^fullnode.* || ${mode} =~ "plotter") && (${blockchains} == 'c
cd /
git clone --branch ${PLOTMAN_BRANCH} https://github.com/guydavis/plotman.git
cd plotman
/chia-blockchain/venv/bin/python setup.py install
/chia-blockchain/venv/bin/pip install .
# Workaround for broken dependency ordering
/chia-blockchain/venv/bin/pip install pendulum~=2.1
/chia-blockchain/venv/bin/pip install packaging~=21.0
/chia-blockchain/venv/bin/pip install attrs~=21.2
/chia-blockchain/venv/bin/pip install desert~=2020.11.18
/chia-blockchain/venv/bin/pip install appdirs~=1.4
apt update && apt install -y rsync
mkdir -p /root/.chia/plotman/logs/archiving
tee /etc/logrotate.d/plotman >/dev/null <<EOF
Expand Down

0 comments on commit 9622c0d

Please sign in to comment.