I'm trying to use the spoonacular python API found here https://github.com/ddsky/spoonacular-api-clients/tree/master/python However, I can't seem to figure out how to install it in
Solution 1:
You're right something is strange, I tried a more direct approach:
- First activate your virtual environment
- Clone repo :
git clone https://github.com/ddsky/spoonacular-api-clients.git
- Install the package manually:
$ cd spoonacular-api-clients/python
$ python setup.py install
It should work:
Post a Comment for "How To Install Spoonacular Python Package"