You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The installation step pip install . can run slowly depending on the project environment. The root cause is in pip (pypa/pip#2195). Any source files under the parent directory (including the .git folder) are copied as part of the installation process. Therefore, if subdirectories like Data, Notebooks, Output, etc., are large, then pip will have to copy many files.
A workaround recommended in the Github issue is to use the -e (--editable) flag. The resulting symlinks work on my laptop but not the .travis.yml file for some reason. See the mofid pip branch for some failed attempts at resolving this issue.
The text was updated successfully, but these errors were encountered:
Another workaround I've been using on the HPC cluster: since I save my CIFs in ./Data, I tend to run something like module load python; mv Data ../temp-Data; pip install --user .; mv ../temp-Data Data
The installation step
pip install .
can run slowly depending on the project environment. The root cause is in pip (pypa/pip#2195). Any source files under the parent directory (including the .git folder) are copied as part of the installation process. Therefore, if subdirectories like Data, Notebooks, Output, etc., are large, then pip will have to copy many files.A workaround recommended in the Github issue is to use the
-e
(--editable
) flag. The resulting symlinks work on my laptop but not the .travis.yml file for some reason. See the mofid pip branch for some failed attempts at resolving this issue.The text was updated successfully, but these errors were encountered: