- For Windows
python -m venv --prompt <venv_promt> <venv_directory> - For Linux
python3 -m venv --prompt <venv_promt> <venv_directory>
- For Windows
<venv_directory>\Scripts\activate.bat - For Linux
source <venv_directory>/bin/activate
python -m venv --prompt <venv_promt> <venv_directory>python3 -m venv --prompt <venv_promt> <venv_directory><venv_directory>\Scripts\activate.batsource <venv_directory>/bin/activate| import os | |
| import shutil | |
| import pandas as pd | |
| import requests | |
| datadir = '/your/path/to/url_csv/file/ulfile.csv' # Change this variable and point 2 sitable csv file path | |
| downloadDir='/your/path/to/download/directory' # Change this variable and point 2 image download directory |
| Package Name | Package description |
|---|---|
| pylint | Python Linter/A simple program which checks Python source files code for errors |
| autopep8 | autopep8 automatically formats Python code to conform to the PEP 8 style guide |
| flake8 | |
| flake8-import-order | |
| flake8-builtins | |
| flake8-logging-format |
| PS1='\[\033]0;$TITLEPREFIX \007\]' # set window title | |
| PS1="$PS1"'\n' # new line | |
| PS1="$PS1"'\[\033[32m\]' # change to green | |
| PS1="$PS1"'\h ' # user@host<space> | |
| PS1="$PS1"'\[\033[35m\]' # change to purple | |
| PS1="$PS1"'\[\033[33m\]' # change to brownish yellow | |
| PS1="$PS1"'\w' # current working directory | |
| if test -z "$WINELOADERNOEXEC" | |
| then | |
| COMPLETION_PATH="${COMPLETION_PATH%/lib/git-core}" |
| set nocompatible | |
| filetype off | |
| call plug#begin('~/.config/nvim/plugged') | |
| " Declare the list of plugins. | |
| Plug 'preservim/nerdtree' | |
| Plug 'morhetz/gruvbox' | |
| Plug 'airblade/vim-gitgutter' | |
| Plug 'tpope/vim-fugitive' | |
| Plug 'vim-airline/vim-airline' |