/tinysearch

Tiny search engine for Python

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

tinysearch

Tiny search engine for Python

Development

Create conda Environment

# List your python envs
$ conda env list

# Create new python envs
$ conda env create --prefix ./ops/pyenv/tinysearch --file ./environment.yml

# Init your shell to use conda activate
$ conda init
$ conda init zsh

# Activate your new created python env
$ conda activate ./ops/pyenv/tinysearch

# Show installed Python packages
$ conda list

# Size of the env
$ du -sh ./ops/pyenv