From ce7957bb94c5988afd11b05116eb13ac79d5334b Mon Sep 17 00:00:00 2001 From: 0x28a4 <95450473+0x28a4@users.noreply.github.com> Date: Fri, 18 Nov 2022 18:30:33 +0000 Subject: [PATCH] Update install_starknet_pathfinder_node.sh The method of setting up Python dependencies has changed a few releases ago, now you have to run this: cd py PIP_REQUIRE_VIRTUALENV=true pip install -e .[dev] --- install_starknet_pathfinder_node.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install_starknet_pathfinder_node.sh b/install_starknet_pathfinder_node.sh index 4b35790..69c6ae6 100644 --- a/install_starknet_pathfinder_node.sh +++ b/install_starknet_pathfinder_node.sh @@ -47,7 +47,8 @@ python3 -m venv .venv source .venv/bin/activate -PIP_REQUIRE_VIRTUALENV=true pip install --upgrade pip +#Since pathfinder 0.40.The method of setting up Python dependencies has changed a few releases ago, now you have to run this: +PIP_REQUIRE_VIRTUALENV=true pip install -e .[dev] PIP_REQUIRE_VIRTUALENV=true pip install -r requirements-dev.txt