We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
pip3 install git+https://github.com/vbuterin/pybitcointools ... running install_data copying LICENSE -> /usr/local/ error: could not create '/usr/local/LICENSE': Permission denied
The text was updated successfully, but these errors were encountered:
I am running into this issue when packaging this library for Fedora.
I ended up with using this patch:
diff --git setup.py setup.py index e01a9bf..757564b 100644 --- setup.py +++ setup.py @@ -13,5 +13,4 @@ setup(name='bitcoin', packages=['bitcoin'], scripts=['pybtctool'], include_package_data=True, - data_files=[("", ["LICENSE"]), ("bitcoin", ["bitcoin/english.txt"])], )
Sorry, something went wrong.
Yes, I have a similar problem packaging this for Debian.
The ‘data_files’ declaration does not seem to help anything, because:
So I have applied essentially the same patch as @hegjon wrote.
Please remove that declaration from the Distutils configuration.
No branches or pull requests
The text was updated successfully, but these errors were encountered: