-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Am 19.03.2010 19:48, schrieb Nick Edwards: > Hi, > > Sphinx looks really cool and I'm keen to try it out! I'm having some > problems getting it working though... > > I'm on a multiuser system to which I don't have root / sudo access so > cannot use easy install. I can quite happily install python packages > in my user area though. I installed sphinx by doing: > > python setup.py install --home=~/usr > > (Where ~/usr/lib/python is in my PYTHONPATH). I can now quite happily > "import sphinx" and access the modules. But I can't seem to find the > commands like: > > sphinx-quickstart > > I assume that if I'd done an easy_install the commands such as these > are setup as aliases for "python somescript.py"? Where can I find a > list of the scripts that the commands correspond to, and where are > they?
It should not matter that you don't use easy_install -- Sphinx' setup.py still imports and uses setuptools. A quick experiment here showed that setuptools installs the scripts into the "bin" subdirectory of the given home -- in your case, that should be ~/usr/bin. cheers, Georg -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.14 (GNU/Linux) iEYEARECAAYFAku62ogACgkQN9GcIYhpnLBg0QCfSTKHDwDU5t5rjCF3DqKSKB5Y xkEAoI4EhZw2bcrQV/2Wtr+Op7v5YYbE =rhxS -----END PGP SIGNATURE----- -- You received this message because you are subscribed to the Google Groups "sphinx-dev" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sphinx-dev?hl=en.
