On 24/07/18 00:39, jorge.conr...@cptec.inpe.br wrote: > from netCDF4 import Dataset > > I had: > > Traceback (most recent call last): > File "<stdin>", line 1, in <module> > ModuleNotFoundError: No module named 'netCDF4' > > > What can I do to solve this error for Python 3.6.0
Install netCDF4 in your Python 3.6 environment. Depending on what OS and Python distribution you're using, the thing to do might be py -3 -m pip install netCDF4 or pip3 install netCDF4 (or something involving conda if you use anaconda) -- https://mail.python.org/mailman/listinfo/python-list