When I try to install my user written fdid like this
Stata tells me there's nothing to install. Why? I have the .toc file, I have the .pkg, sthlp, and ado file. What more would I need for Stata to recognize this as legitimate? You can see the files for yourselves on github here.
EDIT: I GUESS as a workaround users could just do
By using whatever their path for ado files is.... but that's kind of silly, I would hope users could use the net command.
Code:
net install fdid, all from("https://github.com/jgreathouse9/jgreathouse9.github.io/tree/master/stata/fdid")
EDIT: I GUESS as a workaround users could just do
Code:
copy "https://raw.githubusercontent.com/jgreathouse9/jgreathouse9.github.io/master/stata/fdid/fdid.ado" "C:\ado\plus\f\fdid.ado", replace copy "https://raw.githubusercontent.com/jgreathouse9/jgreathouse9.github.io/master/stata/fdid/fdid.sthlp" "C:\ado\plus\f\fdid.sthlp", replace
Comment