Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python virtual environment #3305

Merged
merged 6 commits into from
Oct 14, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
clean setup.py
  • Loading branch information
Fabien-B authored and Fabien-B committed Oct 14, 2024
commit 838a9d61c0566944d73a98edf8b55062aace8074
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,8 @@ def run(args):

if __name__ == "__main__":
parser = argparse.ArgumentParser(description="This script will setup the python environment for Paparazzi")
parser.add_argument('-n', '--name', default='pprzEnv', help='environnment name')
parser.add_argument('-s', '--system', action='store_true', help="Use system site packages.")

parser.add_argument('-c', '--clean', action='store_true',
help="Clean aka delete the virtual environment and previous build results.")
parser.add_argument('-c', '--clean', action='store_true', help="Delete the previous virtual environment before recreating it.")
args = parser.parse_args()

run(args)