mirror of
https://github.com/home-assistant/core.git
synced 2025-07-15 09:17:10 +00:00
Change setup script to use pip install instead of setup.py develop (#7756)
Using `python setup.py develop` did not manage to install the required dependencies. This updates `script/setup` to use `pip install -e .` instead in order to resolve the required dependencies.
This commit is contained in:
parent
775d45ae5a
commit
0abde3aa57
@ -7,4 +7,5 @@ set -e
|
|||||||
cd "$(dirname "$0")/.."
|
cd "$(dirname "$0")/.."
|
||||||
git submodule init
|
git submodule init
|
||||||
script/bootstrap
|
script/bootstrap
|
||||||
python3 setup.py develop
|
|
||||||
|
pip3 install -e .
|
||||||
|
Loading…
x
Reference in New Issue
Block a user