-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Cannot make plot_directive to work on Python-3 #896
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I have a plot that needs scipy 0.14, but readthedocs has scipy 0.13 and pip install fails for scipy 0.14 because the BLAS libraries are missing: Would it be possible to update to scipy 0.14? And could you please update the list of pre-installed package and add the version numbers here? Thanks! |
Please, is it possible that RTD-builders have system-provided packages for matplotlib, numpy, scipy and pandas for python-3 installed? |
Please, any feedback on this? |
Something changed on readthedocs. |
I believe py3 is still affected here. I'll open a ticket to get some of the missing py3 dependencies into our builders |
@ankostis We now have python3 packages for matplotlib, scipy and numpy on the servers. I assume that the plot_directive will now work for Python3 builds. Sorry for the real long wait. Finally we are there :) |
🎉 😄 🎉 |
I'm trying to embed autogenerated matplotlib diagrams into the docs with the Sphinx's
plot_directive
but i have multiple issues with the current state of things in python-3.I have read the relevant issues explaining how to use the global system's packages (#217, #218 & #272, #334), yet i cannot figure out the following:
The "virtualenv + --system-site-packages" does not work, and when RTD prepares the build, it still tries to download and install a new matplotlib version, and ofcourse it fails due to freetype:
...
Extension error:
Could not import extension matplotlib.sphinxext.plot_directive (exception: No module named 'matplotlib')
I cannot find somewhere a list with the available global-site packages in each environment. In my case I need real (not mocked-out) pandas, numpy, scipy & matplotlib for the pyplot-diagrams to work. Are these available as site-packages? (assuming that i manage to see them)
The text was updated successfully, but these errors were encountered: