I'm trying to follow/modify these instructions to get matplotlib compiled on pypy3, but when I try to compile wxpython-cffi
with pypy3 build.py dox
I get this error:
Traceback (most recent call last): File "build.py", line 1650, in <module> main(sys.argv[1:]) File "build.py", line 164, in main function(options, args) File "build.py", line 665, in cmd_dox _doDox('xml') File "build.py", line 657, in _doDox pwd = pushDir(posixjoin(wxDir(), 'docs/doxygen')) File "build.py", line 422, in __init__ os.chdir(newDir) FileNotFoundError: [Errno 2] No such file or directory: '/Users/user/tmp/docs/doxygen'
The steps I followed are:
- installing pypy3 with brew:
brew install pypy3
- trying to install matplotlib with
pip_pypy3
but getting this long error message - trying to install
wxpython
withpip_pypy3 install wxpython
and getting another very long error message - Download
wxpython-cffi
:hg clone https://bitbucket.org/amauryfa/wxpython-cffi
- installing
wxWidgets
withbrew
:brew install wxWidgets
which doxygen
-->/usr/local/bin/doxygen
export DOXYGEN=/usr/local/bin/doxygen
- and finally
pypy3 build.py dox
which results the error above - changing the line
657
ofbuild.py
frompwd = pushDir(posixjoin(wxDir(), 'docs/doxygen'))
topwd = pushDir('/usr/local/bin')
results in a completely different error:
Running command: dox ./regen.sh xml /bin/sh: ./regen.sh: No such file or directory Command './regen.sh xml' failed with exit code 127.
I would appreciate if you could help me know what is the problem and how I can solve it. the final goal is to get the matplotlib installed on pypy3, so out of the box solutions also would do.
P.S. I'm not sure if my tags are appropriate. I would appreciate if the moderators could let me know if they need to be modified/removed