I\'m trying to install spacy by running pip install spacy for python version 3.6.1 but continuously i\'m getting errors like below,how to get r
pip install spacy
If you are using it with manually installed python3.6 and trying to install in a 3.6 environment then you maybe missing python3.6-dev
sudo apt-get install python3.6-dev
also maybe
sudo apt-get install gcc
This is an answer to particular case.