-
Dr. Liberzon @alexlib , I am wondering if you can be so kind to share the way you build PIVPY locally, please. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @nepomnyi I use:
so:
the at the end I package it and upload to |
Beta Was this translation helpful? Give feedback.
Hi @nepomnyi
I use:
conda
for environmentspip
for installationsso:
conda create -n pivpy
conda activate pivpy
conda install pip
pip install -e .
the
pip install -e .
is the local installation for development.-e
ensures that if I change the code and runpivpy
in the same environment I do not need to reinstall every time.at the end I package it and upload to
pypi.org
as a binary wheel