pyautodiff icon indicating copy to clipboard operation
pyautodiff copied to clipboard

Why is this not installable with pip?

Open mihaelacr opened this issue 10 years ago • 3 comments

This seems like a great library and as a person who knows theano I was thinking of doing something like this myself to avoid manually differentiating functions.

People would be a lot keener to use it if it were installable with pip. I think you have done some steps to be able to upload the project to PyPI, why also not do the rest? Is there a problem with the licensing once you upload it?

Thanks for writing this btw :)

mihaelacr avatar Oct 07 '14 14:10 mihaelacr

I agree. As a relative newbie to python I am not sure how to do so without pip

drewid avatar Sep 21 '15 01:09 drewid

I was able to install this for Python 2 with

pip install -e [email protected]:LowinData/pyautodiff.git@python2-ast#egg=autodiff

while I haven't tested this, you can probably install it for Python 3 with

pip install -e [email protected]:LowinData/pyautodiff.git@python3#egg=autodiff

cgc avatar Dec 06 '16 02:12 cgc

I found the command to install in Python 3 with pip:

pip install -e "git+https://github.com/jlowin/pyautodiff/#egg=autodiff"

RiccardoRiglietti avatar Jan 20 '23 15:01 RiccardoRiglietti