Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.06 KB

File metadata and controls

30 lines (22 loc) · 1.06 KB

Compilation Notes

On Unix-like systems (e.g. Darwin, Linux, Windows with the Linux subsystem enabled) building dataset and datasetd is generally as easy as running the GNU Make command. On Windows without the Linux subsystem you need to take a more Window-ish approach and run make.bat.

Windows 11

Here's an example of what I've done after opening a command window

    cd %USERPROFILE%
    mkdir go
    mkdir go\bin
    mkdir go\src
    go get -u github.com\caltechlibrary\dataset
    cd go\src\caltechlibrary\dataset
    .\build.ps1
    move bin\dataset.exe "%USERPROFILE\go\bin\dataset.exe"

The dataset command line exe will likely need to be copied to where your windows command line applications at located.