fastbook
fastbook copied to clipboard
Missing dependencies and pip upgrade required
This is the list of missing dependencies:
numpy
Cython
cymem
murmurhash
preshed
blis
When i tried to install blis, it started complaining on my outdated pip, so i had to upgrade it.
Only after installing all above deps manually, i could finally successfully install pip install -Uqq fastbook
pip install --upgrade pip should be added to installation requirements
had to install graphviz as well pip install graphviz
How did you install the repository? I did the following and had no trouble at all:
- Create virtual environment with
python -m venv venv - Activate virtual environment with
source venv/bin/activate - Upgrade
pipwithpip install --upgrade pip - Install all dependencies specified in
requirements.txtwithpip install -r requirements.txt
The requirements.txt file lists the following dependencies:
fastai>=2.0.0
graphviz
ipywidgets
matplotlib
nbdev>=0.2.12
pandas
scikit_learn
azure-cognitiveservices-search-imagesearch
sentencepiece
I assume the ones you mention get installed as transitive dependencies (e.g., pandas will install numpy)