+4 votes
in Programming Languages by (74.2k points)

I am trying to install pylatex package using conda. I executed the following command, but it gave the error: 

conda install pylatex

ModuleNotFoundError: No module named 'pylatex'

PackagesNotFoundError: The following packages are not available from current channels:

How can I fix this error and install the package?

1 Answer

+2 votes
by (349k points)
selected by
 
Best answer

To install the pylatex package using conda, run the following command. It should install the package.

conda install -c conda-forge pylatex


...