Repo with reading notes and code examples for Fluent Python, by Luciano Ramalho.
- Clone the repo
- create a virtual environment in this directory:
python3 -m venv venv
- activate the virtual environment:
source venv/bin/activate
- install the dependencies:
pip install -r requirements.txt
- set your pythonpath to the fluent python directory: `export PYTHONPATH="$(pwd)/fluent_python"
- cd to the fluent python directory
- run the tests with
pytest