Python/Linux - 以非 root 用户身份手动安装 httplib2

标签 python linux pip setup.py httplib

我正在尝试以非 root 用户身份在 Linux 机器上手动安装 httplib2。我手动执行的原因是因为我没有安装 pip 的权限。我从 https://pypi.python.org/pypi/httplib2 下载了 httplib2-0.9.2.tar.gz 文件在我的本地机器 (Mac) 上,并使用 scp 将它传输到我的 Linux 机器上。

解压 tar.gz 文件后,我运行了以下命令:

[me@host ~]$ cd httplib2-0.9.2
[me@host httplib2-0.9.2]$ ls
MANIFEST.in  PKG-INFO  python2  python3  setup.cfg  setup.py
[me@host httplib2-0.9.2]$ python setup.py install
running install
error: can't create or remove files in install directory

The following error occurred while trying to add or remove files in the
installation directory:

    [Errno 13] Permission denied: '/usr/lib/python2.6/site-packages/test-easy-install-50310.write-test'

The installation directory you specified (via --install-dir, --prefix, or
the distutils default setting) was:

    /usr/lib/python2.6/site-packages/

Perhaps your account does not have write access to this directory?  If the
installation directory is a system-owned directory, you may need to sign in
as the administrator or "root" account.  If you do not have administrative
access to this machine, you may wish to choose a different installation
directory, preferably one that is listed in your PYTHONPATH environment
variable.

For information on other options, you may wish to consult the
documentation at:

  http://peak.telecommunity.com/EasyInstall.html

Please make the appropriate changes for your system and try again.

因为它说如果我不是 root 用户,我需要通过 --install-dir 安装到不同的目录,然后我运行:

[me@host httplib2-0.9.2]$ python setup.py install --install-dir /home/directory/me/
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
   or: setup.py --help [cmd1 cmd2 ...]
   or: setup.py --help-commands
   or: setup.py cmd --help

error: option --install-dir not recognized

运行“$python setup.py --help-commands”得到以下结果:

Standard commands:
  build             build everything needed to install
  build_py          "build" pure Python modules (copy to build directory)
  build_ext         build C/C++ extensions (compile/link to build directory)
  build_clib        build C/C++ libraries used by Python extensions
  build_scripts     "build" scripts (copy and fixup #! line)
  clean             clean up temporary files from 'build' command
  install           install everything from build directory
  install_lib       install all Python modules (extensions and pure Python)
  install_headers   install C/C++ header files
  install_scripts   install scripts (Python or otherwise)
  install_data      install data files
  sdist             create a source distribution (tarball, zip file, etc.)
  register          register the distribution with the Python package index
  bdist             create a built (binary) distribution
  bdist_dumb        create a "dumb" built distribution
  bdist_rpm         create an RPM distribution
  bdist_wininst     create an executable installer for MS Windows
  upload            upload binary package to PyPI

Extra commands:
  rotate            delete older distributions, keeping N newest files
  develop           install package in 'development mode'
  setopt            set an option in setup.cfg or another config file
  saveopts          save supplied options to setup.cfg or other config file
  egg_info          create a distribution's .egg-info directory
  upload_docs       Upload documentation to PyPI
  nosetests         Run unit tests using nosetests
  alias             define a shortcut to invoke one or more commands
  easy_install      Find/get/install Python packages
  bdist_egg         create an "egg" distribution
  install_egg_info  Install an .egg-info directory for the package
  test              run unit tests after in-place build

usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
   or: setup.py --help [cmd1 cmd2 ...]
   or: setup.py --help-commands
   or: setup.py cmd --help

我应该使用什么命令以非根用户身份继续安装 httplib?由于这个问题完全被阻止。

提前致谢!

最佳答案

您走在正确的轨道上。注意这条线

The installation directory you specified (via --install-dir, --prefix, or ...

在这种情况下,您需要使用--prefix。您还需要创建包文件夹并将其导出PYTHONPATH

所以应该这样做

INSTALL_DIR=${HOME}/.local
TREE=${INSTALL_DIR}/lib/python2.7/site-packages
mkdir -p ${TREE}
export PYTHONPATH=$PYTHONPATH:$TREE

python setup.py install --prefix=$INSTALL_DIR

我找到了 this link有帮助。

编辑

或者您可以简单地尝试 python setup.py install --user。参见 the user scheme

关于Python/Linux - 以非 root 用户身份手动安装 httplib2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33620463/

相关文章:

python - 即使在 python 中清除 sys.path 后,导入如何工作?

linux - 在步骤 CHDIR 生成 "/usr/bin/dotnet": No such file or directory 时失败

python - 即使似乎已安装 pipenv,也无法使用 pipenv 安装 Django

python-3.x - 用于设置 virtualenv 和 pip 的 Shell 脚本

python - 如何使用 pip 和从启动板安装的 pypy?

python - 从 C++ 函数 Cython 返回包含 PyObject 的复杂对象

python - 我想在 vtk(python)中制作均匀分布的球体

python - 列表迭代器中的项目值未更新

linux - 如何在clearcase vob中实现 "cp -u"功能?

linux - 更新服务器时出现 Subversion 错误