使用 ubuntu 安装 Python 库

Installing Python Library with ubuntu

这显然是基础,但似乎无法入门。致力于此 learn python the hard way ex50

只需要通过密码获取访问权限。我有 运行 macpro$ sudo pip install lpthw.web 但我不知道要插入的确切密码是什么。谢谢!

 $ sudo pip install lpthw.web
 [sudo] password for zedshaw:
 Downloading/unpacking lpthw.web
   Running setup.py egg_info for package lpthw.web

 Installing collected packages: lpthw.web
   Running setup.py install for lpthw.web

 Successfully installed lpthw.web
 Cleaning up...

请求的密码是您的 ubuntu 用户密码,实际情况是您应该 运行 命令

sudo pip install lpthw.web

在您的终端上, 当它提示您输入密码时,它会提到用户名,例如

[sudo] password for <Your Username>:

您必须是 admin/SU 才能对系统进行 sudo 更改

只需在提示您登录时输入当前密码即可。