Search code examples
pythonanacondaflickr

Can't install flickr api on windows anaconda


I want to install flickr api from anaconda prompt according to it's installation but i get 404 error while installation . First i login into anaconda then do this instruction :

anaconda login

pip install -i https://pypi.anaconda.org/pypi/simple flickrapi


Solution

  • It looks like there is a problem with a dependency using pip install -i https://pypi.anaconda.org/pypi/simple flickrapi. It works for me using easy_install. easy_install flickrapi, then easy_install -U flickrapi to update whenever you want to update to the latest version. I got this information from here .