![](https://secure.gravatar.com/avatar/a9b66d8d518ea1fae3c0db1dd1407cf0.jpg?s=120&d=mm&r=g)
On Tue, 2020-07-21 at 13:51 -0700, David Mathog wrote:
(oops, had to resend, forgot to change the destination to <distutils-sig@python.org>)
biopython-1.77, for instance, when installed into a virtualenv with pip3, has many of these shebangs:
#!/usr/bin/env python
And they are all over the place. They are:
./site-packages/Bio/bgzf.py: ./site-packages/Bio/PDB/parse_pdb_header.py: ./site-packages/Bio/PDB/PDBList.py: ./site-packages/Bio/Restriction/__init__.py: ./site-packages/Bio/Restriction/Restriction.py: ./site-packages/Bio/Restriction/PrintFormat.py: ./site-packages/Bio/Restriction/Restriction_Dictionary.py: ./site-packages/Bio/Wise/__init__.py: ./site-packages/Bio/Wise/psw.py: ./site-packages/Bio/Wise/dnal.py: ./site-packages/Bio/UniProt/GOA.py: ./site-packages/Bio/SeqUtils/__init__.py:
Regards,
David Mathog -- Distutils-SIG mailing list -- distutils-sig@python.org To unsubscribe send an email to distutils-sig-leave@python.org https://mail.python.org/mailman3/lists/distutils-sig.python.org/ Message archived at https://mail.python.org/archives/list/distutils-sig@python.org/message/EPFOI...
Is it being installed as an egg or wheel? Can you check what happens when you pass --use-pep517 to the pip install command (to force installing as a wheel)? Filipe Laíns