ESGF / esgf-installer

ESGF P2P Node Installer
https://esgf.llnl.gov/
Other
20 stars 21 forks source link

Use pip to install from git repo #510

Closed nathanlcarlson closed 6 years ago

nathanlcarlson commented 6 years ago

The pip documentation with examples. https://pip.pypa.io/en/stable/reference/pip_install/#git

So rather than

git clone https://github.com/ESGF/esg-publisher.git
cd esg-publisher
git checkout tags/3.5.0
cd src/python/esgcet
python setup.py install

pip allows for

pip install "git+https://github.com/ESGF/esg-publisher.git@v3.5.0#egg=esgcet&subdirectory=src/python/esgcet"
nathanlcarlson commented 6 years ago

The functionality for this has been created and now it must be applied where applicable.