Forums

installing third party packages on pythonanywhere

Hi I want to install django-remote-forms packages I upload all needed files but I have permission for python setup.py install How I could install this package on pythonanywhere

pip install --user django-remote-forms

OR, probably a better option:

Set up a virtualenv, and then you can just

pip install

inside it with abandon!

it seems pip repo dose not include django-remote-forms I got this error : No distributions at all found for django-remote-forms

It looks like they've removed the package from pypi. You might be able to get it directly from github?

pip install --user https://github.com/WiserTogether/django-remote-forms/archive/master.zip

tnx alot .