python - setup.py missing in matplotlib -


i have installed matplotlib

http://matplotlib.org/downloads.html

i tried first step

c:\python34\scripts>py example_01.py traceback (most recent call last):   file "example_01.py", line 2, in <module>     import matplotlib.pyplot plt   file "c:\python34\lib\site-packages\matplotlib\__init__.py", line 105, in <mod ule>     import 6 importerror: no module named 'six' 

using site, found advice should run setup.py. found versions of setup.py in c:\python34\lib\site-packages\numpy not in c:\python34\lib\site-packages\matplotlib.

so, question be:

  1. should have setup.py in site-packages\matplotlib

  2. should there separate setup.py each site package?

  3. how python know run...both numpy , matplotlib can imports.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -