Skip to content Skip to sidebar Skip to footer

How To Install Spoonacular Python Package

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:

  1. First activate your virtual environment
  2. Clone repo : git clone https://github.com/ddsky/spoonacular-api-clients.git
  3. Install the package manually:

$ cd spoonacular-api-clients/python

$ python setup.py install

It should work: enter image description here

Post a Comment for "How To Install Spoonacular Python Package"