From 8cdf8b132f494cca54eca8d3507f45e19fbf8680 Mon Sep 17 00:00:00 2001 From: Blake Ridgway Date: Thu, 24 Nov 2022 12:07:13 -0600 Subject: [PATCH] (refactor): new aliases and cleanup --- aliases.zsh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aliases.zsh b/aliases.zsh index 6e01e06..b4022d3 100755 --- a/aliases.zsh +++ b/aliases.zsh @@ -1,4 +1,3 @@ -# A collection of useful aliases to make terminal life bliss # Unix alias ll="ls -la" alias ln="ln -v" @@ -27,6 +26,10 @@ alias gra="git remote add origin " alias clonerepo="git fetch --all && git pull --all && git clone-branches" # Python +alias initvenv='python3 -m venv vemv' +alias startvenv='source venv/bin/activate' +alias stopvenv='deactivate' +alias pyinstall='python3 -m pip install -r requirements.txt' alias py='python3' alias py3='python3' alias python='python3'