Skip to content
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

MacOSX additional installation steps #15

Closed
kmturley opened this issue Nov 30, 2018 · 3 comments
Closed

MacOSX additional installation steps #15

kmturley opened this issue Nov 30, 2018 · 3 comments
Labels
bug Something isn't working cantfix Issue is caused by some external component and can not be fixed here

Comments

@kmturley
Copy link

I was getting this error on MacOSX:
Python is not installed as a framework. The Mac OS X backend will not be able to function correctly if Python is not installed as a framework.

and also then missing library:
ImportError: No module named wx

I fixed using the following steps:

export MPLBACKEND="WXAgg"
pip install tensorflow==1.8.0
pip install -U wxPython
python Predict.py with cfg.full_44KHz
f90 added a commit that referenced this issue Dec 2, 2018
…prediction runnable without matplitlib to avoid MacOS problems (see issues #15 #12 #8)
@f90
Copy link
Owner

f90 commented Dec 2, 2018

Thanks for reporting this. For the first error, seems like Python is not set up correctly - this is outside of my control.

To the second issue: While this seems MacOS-specific and so I can't really ensure that my installation instructions will also work on MacOS right away, but I made the following changes:

  1. Remove dependency on the matplotlib package when making predictions (running Predict.py) or running the training (Training.py) by putting all plotting code into an extra file (Plot.py). Also removed the package from the requirements.txt so it is not even installed by default. Therefore we should only encounter these matplotlib Mac problems when people actually want to plot the figures in the paper, which is a rather rare use case compared to prediction and training.

  2. I will link to this fix you found in the Readme file, it was logged there already since the problem popped up already (see here), but with a slightly different solution. I will include both these solutions so people will find something that works for them.

If you could be so nice, can you clone the repository again, and create a new Python virtual environment and install the packages now again using pip install -r requirements.txt and then trying to run Predict.py to see if it now works without any issue? Since matplotlib should now not be used anymore in this scenario. Thanks!

@f90 f90 added bug Something isn't working cantfix Issue is caused by some external component and can not be fixed here labels Dec 2, 2018
@kmturley
Copy link
Author

kmturley commented Dec 3, 2018

Awesome, it works when used like this:

virtualenv env
source env/bin/activate
pip install -r requirements.txt
python Predict.py with cfg.full_44KHz

@f90
Copy link
Owner

f90 commented Dec 3, 2018

Great! Thanks for testing whether this code-change fixed it. Have fun with the Wave-U-Net ;)

@f90 f90 closed this as completed Dec 3, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working cantfix Issue is caused by some external component and can not be fixed here
Projects
None yet
Development

No branches or pull requests

2 participants