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
Originally reported by: guest (Bitbucket: guest, GitHub: guest)
SUMMARY: Couldn't install CherryPy to alternate directory using PIP. It fails at 'intall_data'.
FIX: I comment line 110 in setup.py: fix_data_files(data_files)
DESCRIPTION OF PROBLEM: Note: This was using Jython but guess it would be the same with CPython.
Alternate directory: /opt/nhery/lib/jython2.5.2/site-packages Default directory (don't have permissions): /opt/fddata/jython2.5.2/Lib/site-packages
I have a /opt/fddata/jython2.5.2/Lib/distutils/distutils.cfg that looks like: [install] install_lib = /opt/nhery/lib/jython2.5.2/site-packages
Works fine until install_data Output of 'pip install cherrypy':
...... byte-compiling /opt/nhery/lib/jython2.5.2/site-packages/cherrypy/tutorial/bonus-sqlobject.py to bonus-sqlobject$py.class
byte-compiling /opt/nhery/lib/jython2.5.2/site-packages/cherrypy/tutorial/tut02_expose_methods.py to tut02_expose_methods$py.class
running install_data
creating /opt/fddata/jython2.5.2/Lib/site-packages/cherrypy
error: could not create '/opt/fddata/jython2.5.2/Lib/site-packages/cherrypy': Permission denied
The text was updated successfully, but these errors were encountered:
Use 'include_package_data' directive to ensure that package data is i…
40c75b1
…ncluded with the installation. Abandon hacks in INSTALL_SCHEMES and hacks for wininst. Fixes #1538 and #1090.
I'm assuming this is fixed by #1539.
Sorry, something went wrong.
No branches or pull requests
Originally reported by: guest (Bitbucket: guest, GitHub: guest)
SUMMARY:
Couldn't install CherryPy to alternate directory using PIP. It fails at 'intall_data'.
FIX:
I comment line 110 in setup.py: fix_data_files(data_files)
DESCRIPTION OF PROBLEM:
Note: This was using Jython but guess it would be the same with CPython.
Alternate directory: /opt/nhery/lib/jython2.5.2/site-packages
Default directory (don't have permissions): /opt/fddata/jython2.5.2/Lib/site-packages
I have a /opt/fddata/jython2.5.2/Lib/distutils/distutils.cfg that looks like:
[install]
install_lib = /opt/nhery/lib/jython2.5.2/site-packages
Works fine until install_data
Output of 'pip install cherrypy':
......
byte-compiling /opt/nhery/lib/jython2.5.2/site-packages/cherrypy/tutorial/bonus-sqlobject.py to bonus-sqlobject$py.class
byte-compiling /opt/nhery/lib/jython2.5.2/site-packages/cherrypy/tutorial/tut02_expose_methods.py to tut02_expose_methods$py.class
running install_data
creating /opt/fddata/jython2.5.2/Lib/site-packages/cherrypy
error: could not create '/opt/fddata/jython2.5.2/Lib/site-packages/cherrypy': Permission denied
The text was updated successfully, but these errors were encountered: