You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ python setup.py bdist_wheel
running bdist_wheel
running build
running build_py
creating build/lib/tensorflow_privacy
error: could not create 'build/lib/tensorflow_privacy': Not a directory
OS X uses a case-insensitive filesystem, though it maintains the case when displaying names. The build process creates a ./build/ directory. This works on Linux since the filesystem is case-sensitive, but not on OS X. Locally renaming the file to BUILD.txt allows python setup.py bdist_wheel to succeed.
The text was updated successfully, but these errors were encountered:
Using current
master
:OS X uses a case-insensitive filesystem, though it maintains the case when displaying names. The build process creates a
./build/
directory. This works on Linux since the filesystem is case-sensitive, but not on OS X. Locally renaming the file toBUILD.txt
allowspython setup.py bdist_wheel
to succeed.The text was updated successfully, but these errors were encountered: