I'm trying to compile a document on Lyx but it keeps throwing 'enumitem.sty' not found.
I installed the BasicTeX package from MacTeX website.
Is there anything else I need to install?
I'm trying to compile a document on Lyx but it keeps throwing 'enumitem.sty' not found.
I installed the BasicTeX package from MacTeX website.
Is there anything else I need to install?
As said in the comments, BasicTeX contains what is strictly necessary for TeX and LaTeX to work, and very little more.
If you don't want to install the full MacTeX (which is the full TeX Live, adapted for Mac OS X) and if you want to stick to BasicTeX, you can install the enumitem package yourself. The simplest way to do it is to use the TeX Live Utility program, which comes with the MacTeX-additions (everything of MacTeX excepted TeX Live). BTW, it is strongly recommended to install these MacTeX-additions together with BasicTeX, if only to install the packages you think are missing…
This worked for me.
sudo tlmgr install enumitem
In case if tlmgr is not found edit .bash_profile using vim ~/.bash_profile
and add these lines
### TeX
export PATH="/Library/TeX/Distributions/.DefaultTeX/Contents/Programs/texbin:$PATH"
Run source ~/.bash_profile
And then run the above command.
If you are using Tex Live after you install using:
sudo tlmgr install enumitem
You will need to update the index using
sudo texhash
Before the package can be found.
See "4 Update your index" in https://en.wikibooks.org/wiki/LaTeX/Installing_Extra_Packages
enumitemdoesn't fall in the 'basic' category. I'd guess BasicTeX has a package install mechanism, but, if not, you can always install it directly from CTAN. If you just want to test quickly if that works, putenumitem.styin the same folder as your.texfile and try to compile. If that works, you probably want to move the file to a more useful spot in your installation. How that is done varies from OS to OS and from 'TeX distribution' to 'TeX distribution'. There are many questions on this site about such matters. – jon Oct 23 '14 at 22:30enumitempackage, included in tex live (full) and on ctan. – barbara beeton Oct 24 '14 at 14:40