/gslab_make

Python tools for GSLab

Primary LanguageHTMLMIT LicenseMIT

GSLab Make Library

Overview

This repository contains the gslab_make Python library.

Information about this package is available in its internal documentation.

Requirements

Installation

The preferred installation method is to use pip:

pip install git+ssh://git@github.com/gentzkow/gslab_make.git@master

or

pip install git+https://git@github.com/gentzkow/gslab_make.git@master

which are the SSH and HTTPS protocol versions, respectively.

The package at any tagged release, branch, or commit can be installed with the same commands, just changing master to the desired target; e.g.,

pip install git+ssh://git@github.com/gentzkow/gslab_make.git@<tag, branch name, or commit hash>

Note that this installation procedure may require obtaining machine privileges through, say, a sudo command.

Alternatively, one may install the local version of gslab_make by running (from the root of the repository)

pip install .

We do not recommend that these packages be installed by executing

python setup.py install

This method of installation uses egg files rather than wheels, which can cause conflicts with previous versions of gslab_tools. If this method of installation is executed, some files need to be removed from the directory with a clean argument. clean removes /build,/dist, and GSLab_Make.egg-info, which are built upon installation. This argument can be called by executing

python setup.py clean

Remote Updates

Our lab continually updates the master branch of gslab_make with additional features. Users who have installed a local version of gslab_make and are working with this library on their own independent packages will need to track and pull updates to the master branch. Using older versions of this library without updating from master may lead to errors.

To update this library from its master branch, execute the following commands from the root of the project:

git submodule init
git submodule update
cd ~\lib\gslab_make
git switch master
git pull

One may then push these updates as a new commit to their own project repository.

License

See here.

FAQs

Q: What if I want to install a different branch called dev of gslab_make rather than master?

A: Either git checkout dev that branch of the repo before installing, or change @master to @dev in the pip install instruction.