I am trying to install dropbox on my university host, and that requires python module docutils
. So, after downloading the module and running python install.py
I get the following output:
running install
running build
running build_py
running build_scripts
running build_data
running install_lib
creating /usr/local/lib/python2.7/dist-packages/docutils
error: could not create '/usr/local/lib/python2.7/dist-packages/docutils': Read-only file system
Not surprising really, I can't do any writing outside my home directory. My question is - is there a way to install it in my home folder?
Thanks