Skip to content

iuryadones/computer-vision

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

83 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vision-comp

Workstation

  • 1 Install pipenv
  • 2.1 Add in .bashrc
  • 2.2 Add in .zshrc

1 Install pipenv

pip install --user pipenv

2.1 Add in .bashrc

## local_user: pipenv and others binary
if [[ -d $HOME/.local ]]; then
    export LOCAL_USER="$HOME/.local"
    export PATH="$LOCAL_USER/bin:$PATH"
fi

if command -v pipenv &> /dev/null; then
    eval "$(pipenv --completion)"
fi

if command -v pip &> /dev/null; then
    eval "$(pip completion --zsh)"
fi

2.2 Add in .zshrc

## local_user: pipenv and others binary
if [[ -d $HOME/.local ]]; then
    export LOCAL_USER="$HOME/.local"
    export PATH="$LOCAL_USER/bin:$PATH"
fi

if (( $+commands[pipenv] )); then
    eval "$(pipenv --completion)"
fi

if (( $+commands[pip] )); then
    eval "$(pip completion --zsh)"
fi

aulas

  • Visão computacional
  • Processamento de imagens

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published