Skip to content

Commit

Permalink
update install script
Browse files Browse the repository at this point in the history
  • Loading branch information
hp115 committed May 16, 2024
1 parent 5c5abf2 commit 9974eb1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
#!/bin/bash

pipx install --python python3.9 --force $1 .
# optional pipx arguments can be passed as the first argument
# e.g. ./install.sh --verbose --editable

# Remove existing installs
pipx uninstall ClayCodeTests > /dev/null 2>&1
pipx uninstall ClayCode > /dev/null 2>&1

# Install the package
pipx install --python python3.10 --force $1 .

0 comments on commit 9974eb1

Please sign in to comment.