How to build/pip install a local version? #48
Answered
by
casperdcl
KrisThielemans
asked this question in
Q&A
-
I'd like to be able to mkdir -p ~/devel
cd ~/devel
python3 -m venv petsirdenv
source ./petsirdenv/bin/activate
pip install -q build
cd PETSIRD/python
python -m build with the intention to follow that by something like
However, the first step leads to
@casperdcl @johnstairs can you help, please? |
Beta Was this translation helpful? Give feedback.
Answered by
casperdcl
Nov 1, 2024
Replies: 1 comment 1 reply
-
cd model
yardl generate
pip install ../python and if you don't want to keep re-installing (i.e. running pip install -e ../python |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
KrisThielemans
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cd model yardl generate pip install ../python
and if you don't want to keep re-installing (i.e. running
yardl generate
won't need anotherpip install
):