-
Notifications
You must be signed in to change notification settings - Fork 114
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
How to build on Mac with Conda Python 3.8 #59
Comments
@jtchilders,
Any hints to solve this issue? Thanks~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It took me a while to figure this out so I just wanted to place this here for documentation:
If you make a miniconda installation on your mac, in my case with Python 3.8.3 and all these modules:
some of these packages aren't necessary for
pptk
(tensorflow
for example). Some key packages wereThen you can clone the repo:
Now you need to build the wheel and things have changed so you need to edit the
setup.py
in the build directory so that the top of the file looks like this:Then you can build and install the wheel:
python setup.py bdist_wheel pip install dist/*.whl
Done.
The text was updated successfully, but these errors were encountered: