How to fix error with freetype while installing all packages from a requirements.txt file?
If you are using Linux OS: Remove matplotlib==1.3.1 from requirements.txt Try to install matplotlib with sudo apt-get install python-matplotlib Install all packages again from requirements.txt For Python 2: run pip install -r requirements.txt For Python 3: run pip3 install -r requirements.txt pip freeze > requirements.txt If you are using Windows OS: python -m pip install … Read more