Installation¶
Install Through PyPI¶
The easiest way to install autodiff is by pip. Just type in
pip install DYFS-autodiff in the command line.
pip install DFYS-autodiff
Install Manually¶
The user can choose to install autodiff directly from the source in
this repository. We suppose that the user has already installed pip
and virtualenv:
- clone the project repo by
git clone git@github.com:D-F-Y-S/cs207-FinalProject.git cdinto the local repo and create a virtual environment byvirtualenv env- activate the virtual environment by
source env/bin/activate(usedeactivateto deactivate the virtual environment later.) - install the dependencies by
pip install -r requirements.txt - install
autodiffbypip install -e .