Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 584 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 584 Bytes

anagrams-solver

this python app will find every possible combination and permutation (power sets) of words in the dictionary given any 6 letters

MacOS:

install virtualenv

python -m pip install --user virtualenv

create python virtual environment

python -m venv env

activate virtual environment

source env/bin/activate

verify

which python

install modules

pip install enchant

run anagrams solver
make sure default python symlink is mapped to python3 (else use python3)

python app.py

deactivate environment

deactivate