This website works better with JavaScript.
Home
Help
Register
Sign In
jim
/
borg-setup
Watch
0
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
setup: add pipenv check
master
Jim Paris
1 year ago
parent
d413ea3b82
commit
b1748455a0
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
initial-setup.sh
+ 4
- 0
initial-setup.sh
View File
@@ -69,6 +69,10 @@ error() { msg 31 "Error:" "$@" ; exit 1 ; }
# Create pip environment
setup_venv()
{
if ! which pipenv >/dev/null 2>&1 ; then
echo "pipenv not found, try: sudo apt install pipenv"
exit 1
fi
mkdir .venv
pipenv install
}
Write
Preview
Loading…
Cancel
Save