From: Eric B. <er...@pi...> - 2017-05-19 17:25:31
|
If you do python setup.py install --help there are a number of options for controlling the install location. The most commonly desired option is python setup.py install --home, which would install almost any Python library into ~/.local, which Python knows to check automatically for modules. I see there is also --install-base if you want it somewhere else. There is another option, where python setup.py build is used instead, and the code is compiled under cclib/build/, but you'll have to manually modify $PYTHONPATH. Eric On Fri, May 19, 2017 at 11:42 AM, Colin Lam <yh...@gm...> wrote: > Hello, > > This may be an obvious question, but how do I install cclib-1.5 to a local > directory on my home disk in a computing cluster running Linux? I do not > have root permission to run the install command "python setup.py install" > given on the tutorial page. > > Thanks, > Colin > > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! https://na01.safelinks. > protection.outlook.com/?url=http%3A%2F%2Fsdm.link%2Fslashdot&data=01%7C01% > 7Cerb74%40pitt.edu%7C1e8131bdc4ed4f734a6c08d49ecdb7c3% > 7C9ef9f489e0a04eeb87cc3a526112fd0d%7C1&sdata= > nmO83GJkJOu5gJWD4kziNF9Q59hgt4JNDVXrNKDSU%2Bc%3D&reserved=0 > _______________________________________________ > cclib-users mailing list > ccl...@li... > https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists. > sourceforge.net%2Flists%2Flistinfo%2Fcclib-users&data= > 01%7C01%7Cerb74%40pitt.edu%7C1e8131bdc4ed4f734a6c08d49ecdb7c3% > 7C9ef9f489e0a04eeb87cc3a526112fd0d%7C1&sdata=% > 2BOouRlLloaRqVtjMRjYn2FsYD3TONf1OTuSnzgEd%2FG0%3D&reserved=0 > > |