Hi! is there an easy way to automate installation ...
# general
b
Hi! is there an easy way to automate installation of python packages? I had to create a script that does the following commands to add new packages to a repo:
Copy code
#!/bin/sh -e
poetry add --lock $@
rm -f poetry.lock
pants generate-lockfiles ::
pants export --resolve=python-default --resolve=pytest
Is there a way to streamline this? Or am I doing things wrong?
r
I don’t think currently there is any other automated way.
c