mirror of
https://github.com/LCTT/TranslateProject.git
synced 2025-01-25 23:11:02 +08:00
Merge remote-tracking branch 'LCTT/master'
This commit is contained in:
commit
1c138bddae
@ -1,9 +1,9 @@
|
||||
NPM 的桌面 GUI 程序
|
||||
ndm:NPM 的桌面 GUI 程序
|
||||
======
|
||||
|
||||
![](https://www.ostechnix.com/wp-content/uploads/2018/04/ndm-3-720x340.png)
|
||||
|
||||
NPM 是 **N** ode **P** ackage **M** anager (node 包管理器)的缩写,它是用于安装 NodeJS 软件包或模块的命令行软件包管理器。我们发布过一个指南描述了如何[**使用 NPM 管理 NodeJS 包**][1]。你可能已经注意到,使用 Npm 管理 NodeJS 包或模块并不是什么大问题。但是,如果你不习惯用 CLI 的方式,这有一个名为 **NDM** 的桌面 GUI 程序,它可用于管理 NodeJS 程序/模块。 NDM,代表 **N** PM **D** esktop **M** anager (npm 桌面管理器),是 NPM 的免费开源图形前端,它允许我们通过简单图形桌面安装、更新、删除 NodeJS 包。
|
||||
NPM 是 **N**ode **P**ackage **M**anager (node 包管理器)的缩写,它是用于安装 NodeJS 软件包或模块的命令行软件包管理器。我们发布过一个指南描述了如何[使用 NPM 管理 NodeJS 包][1]。你可能已经注意到,使用 Npm 管理 NodeJS 包或模块并不是什么大问题。但是,如果你不习惯用 CLI 的方式,这有一个名为 **NDM** 的桌面 GUI 程序,它可用于管理 NodeJS 程序/模块。 NDM,代表 **N**PM **D**esktop **M**anager (npm 桌面管理器),是 NPM 的自由开源图形前端,它允许我们通过简单图形桌面安装、更新、删除 NodeJS 包。
|
||||
|
||||
在这个简短的教程中,我们将了解 Linux 中的 Ndm。
|
||||
|
||||
@ -11,59 +11,58 @@ NPM 是 **N** ode **P** ackage **M** anager (node 包管理器)的缩写,
|
||||
|
||||
NDM 在 AUR 中可用,因此你可以在 Arch Linux 及其衍生版(如 Antergos 和 Manjaro Linux)上使用任何 AUR 助手程序安装。
|
||||
|
||||
使用 [**Pacaur**][2]:
|
||||
使用 [Pacaur][2]:
|
||||
|
||||
```
|
||||
$ pacaur -S ndm
|
||||
|
||||
```
|
||||
|
||||
使用 [**Packer**][3]:
|
||||
使用 [Packer][3]:
|
||||
|
||||
```
|
||||
$ packer -S ndm
|
||||
|
||||
```
|
||||
|
||||
使用 [**Trizen**][4]:
|
||||
使用 [Trizen][4]:
|
||||
|
||||
```
|
||||
$ trizen -S ndm
|
||||
|
||||
```
|
||||
|
||||
使用 [**Yay**][5]:
|
||||
使用 [Yay][5]:
|
||||
|
||||
```
|
||||
$ yay -S ndm
|
||||
|
||||
```
|
||||
|
||||
使用 [**Yaourt**][6]:
|
||||
使用 [Yaourt][6]:
|
||||
|
||||
```
|
||||
$ yaourt -S ndm
|
||||
|
||||
```
|
||||
|
||||
在基于 RHEL 的系统(如 CentOS)上,运行以下命令以安装 NDM。
|
||||
|
||||
```
|
||||
$ echo "[fury] name=ndm repository baseurl=https://repo.fury.io/720kb/ enabled=1 gpgcheck=0" | sudo tee /etc/yum.repos.d/ndm.repo && sudo yum update &&
|
||||
|
||||
```
|
||||
|
||||
在 Debian、Ubuntu、Linux Mint:
|
||||
|
||||
```
|
||||
$ echo "deb [trusted=yes] https://apt.fury.io/720kb/ /" | sudo tee /etc/apt/sources.list.d/ndm.list && sudo apt-get update && sudo apt-get install ndm
|
||||
|
||||
```
|
||||
|
||||
也可以使用 **Linuxbrew** 安装 NDM。首先,按照以下链接中的说明安装 Linuxbrew。
|
||||
|
||||
安装 Linuxbrew 后,可以使用以下命令安装 NDM:
|
||||
|
||||
```
|
||||
$ brew update
|
||||
|
||||
$ brew install ndm
|
||||
|
||||
```
|
||||
|
||||
在其他 Linux 发行版上,进入[**NDM 发布页面**][7],下载最新版本,自行编译和安装。
|
||||
在其他 Linux 发行版上,进入 [NDM 发布页面][7],下载最新版本,自行编译和安装。
|
||||
|
||||
### NDM 使用
|
||||
|
||||
@ -73,15 +72,15 @@ $ brew install ndm
|
||||
|
||||
在这里你可以本地或全局安装 NodeJS 包/模块。
|
||||
|
||||
**本地安装 NodeJS 包**
|
||||
#### 本地安装 NodeJS 包
|
||||
|
||||
要在本地安装软件包,首先通过单击主屏幕上的 **“Add projects”** 按钮选择项目目录,然后选择要保留项目文件的目录。例如,我选择了一个名为 **“demo”** 的目录作为我的项目目录。
|
||||
要在本地安装软件包,首先通过单击主屏幕上的 “Add projects” 按钮选择项目目录,然后选择要保留项目文件的目录。例如,我选择了一个名为 “demo” 的目录作为我的项目目录。
|
||||
|
||||
单击项目目录(即 **demo**),然后单击 **Add packages** 按钮。
|
||||
单击项目目录(即 demo),然后单击 “Add packages” 按钮。
|
||||
|
||||
![][10]
|
||||
|
||||
输入要安装的软件包名称,然后单击 **Install** 按钮。
|
||||
输入要安装的软件包名称,然后单击 “Install” 按钮。
|
||||
|
||||
![][11]
|
||||
|
||||
@ -91,41 +90,37 @@ $ brew install ndm
|
||||
|
||||
同样,你可以创建单独的项目目录并在其中安装 NodeJS 模块。要查看项目中已安装模块的列表,请单击项目目录,右侧将显示软件包。
|
||||
|
||||
**全局安装 NodeJS 包**
|
||||
#### 全局安装 NodeJS 包
|
||||
|
||||
要全局安装 NodeJS 包,请单击主界面左侧的 **Globals** 按钮。然后,单击 “Add packages” 按钮,输入包的名称并单击 “Install” 按钮。
|
||||
要全局安装 NodeJS 包,请单击主界面左侧的 “Globals” 按钮。然后,单击 “Add packages” 按钮,输入包的名称并单击 “Install” 按钮。
|
||||
|
||||
**管理包**
|
||||
#### 管理包
|
||||
|
||||
单击任何已安装的包,不将在顶部看到各种选项,例如:
|
||||
|
||||
1. 版本(查看已安装的版本),
|
||||
2. 最新(安装最新版本),
|
||||
3. 更新(更新当前选定的包),
|
||||
4. 卸载(删除所选包)等。
|
||||
|
||||
|
||||
1. 版本(查看已安装的版本),
|
||||
2. 最新(安装最新版本),
|
||||
3. 更新(更新当前选定的包),
|
||||
4. 卸载(删除所选包)等。
|
||||
|
||||
![][13]
|
||||
|
||||
NDM 还有两个选项,即 **“Update npm”** 用于将 node 包管理器更新成最新可用版本, **Doctor** 运行一组检查以确保你的 npm 安装有所需的功能管理你的包/模块。
|
||||
NDM 还有两个选项,即 “Update npm” 用于将 node 包管理器更新成最新可用版本, 而 “Doctor” 会运行一组检查以确保你的 npm 安装有所需的功能管理你的包/模块。
|
||||
|
||||
### 结论
|
||||
### 总结
|
||||
|
||||
NDM 使安装、更新、删除 NodeJS 包的过程更加容易!你无需记住执行这些任务的命令。NDM 让我们在简单的图形界面中点击几下鼠标即可完成所有操作。对于那些懒得输入命令的人来说,NDM 是管理 NodeJS 包的完美伴侣。
|
||||
|
||||
干杯!
|
||||
|
||||
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
via: https://www.ostechnix.com/ndm-a-desktop-gui-application-for-npm/
|
||||
|
||||
作者:[SK][a]
|
||||
译者:[geekpi](https://github.com/geekpi)
|
||||
校对:[校对者ID](https://github.com/校对者ID)
|
||||
选题:[lujun9972](https://github.com/lujun9972)
|
||||
译者:[geekpi](https://github.com/geekpi)
|
||||
校对:[wxy](https://github.com/wxy)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||
|
168
published/20181001 How to Install Pip on Ubuntu.md
Normal file
168
published/20181001 How to Install Pip on Ubuntu.md
Normal file
@ -0,0 +1,168 @@
|
||||
如何在 Ubuntu 上安装 pip
|
||||
======
|
||||
|
||||
**`pip` 是一个命令行工具,允许你安装 Python 编写的软件包。 学习如何在 Ubuntu 上安装 `pip` 以及如何使用它来安装 Python 应用程序。**
|
||||
|
||||
有许多方法可以[在 Ubuntu 上安装软件][1]。 你可以从软件中心安装应用程序,也可以从下载的 DEB 文件、PPA(LCTT 译注:PPA 即 Personal Package Archives,个人软件包集)、[Snap 软件包][2],也可以使用 [Flatpak][3]、使用 [AppImage][4],甚至用旧的源代码安装方式。
|
||||
|
||||
还有一种方法可以在 [Ubuntu][5] 中安装软件包。 它被称为 `pip`,你可以使用它来安装基于 Python 的应用程序。
|
||||
|
||||
### 什么是 pip
|
||||
|
||||
[pip][6] 代表 “pip Installs Packages”。 [pip][7] 是一个基于命令行的包管理系统。 用于安装和管理 [Python 语言][8]编写的软件。
|
||||
|
||||
你可以使用 `pip` 来安装 Python 包索引([PyPI][9])中列出的包。
|
||||
|
||||
作为软件开发人员,你可以使用 `pip` 为你自己的 Python 项目安装各种 Python 模块和包。
|
||||
|
||||
作为最终用户,你可能需要使用 `pip` 来安装一些 Python 开发的并且可以使用 `pip` 轻松安装的应用程序。 一个这样的例子是 [Stress Terminal][10] 应用程序,你可以使用 `pip` 轻松安装。
|
||||
|
||||
让我们看看如何在 Ubuntu 和其他基于 Ubuntu 的发行版上安装 `pip`。
|
||||
|
||||
### 如何在 Ubuntu 上安装 pip
|
||||
|
||||
![Install pip on Ubuntu Linux][11]
|
||||
|
||||
默认情况下,`pip` 未安装在 Ubuntu 上。 你必须首先安装它才能使用。 在 Ubuntu 上安装 `pip` 非常简单。 我马上展示给你。
|
||||
|
||||
Ubuntu 18.04 默认安装了 Python 2 和 Python 3。 因此,你应该为两个 Python 版本安装 `pip`。
|
||||
|
||||
`pip`,默认情况下是指 Python 2。`pip3` 代表 Python 3 中的 pip。
|
||||
|
||||
注意:我在本教程中使用的是 Ubuntu 18.04。 但是这里的教程应该适用于其他版本,如Ubuntu 16.04、18.10 等。你也可以在基于 Ubuntu 的其他 Linux 发行版上使用相同的命令,如 Linux Mint、Linux Lite、Xubuntu、Kubuntu 等。
|
||||
|
||||
#### 为 Python 2 安装 pip
|
||||
|
||||
首先,确保已经安装了 Python 2。 在 Ubuntu 上,可以使用以下命令进行验证。
|
||||
|
||||
```
|
||||
python2 --version
|
||||
```
|
||||
|
||||
如果没有错误并且显示了 Python 版本的有效输出,则说明安装了 Python 2。 所以现在你可以使用这个命令为 Python 2 安装 `pip`:
|
||||
|
||||
```
|
||||
sudo apt install python-pip
|
||||
```
|
||||
|
||||
这将安装 `pip` 和它的许多其他依赖项。 安装完成后,请确认你已正确安装了 `pip`。
|
||||
|
||||
```
|
||||
pip --version
|
||||
```
|
||||
|
||||
它应该显示一个版本号,如下所示:
|
||||
|
||||
```
|
||||
pip 9.0.1 from /usr/lib/python2.7/dist-packages (python 2.7)
|
||||
```
|
||||
|
||||
这意味着你已经成功在 Ubuntu 上安装了 `pip`。
|
||||
|
||||
#### 为 Python 3 安装 pip
|
||||
|
||||
你必须确保在 Ubuntu 上安装了 Python 3。 可以使用以下命令检查一下:
|
||||
|
||||
```
|
||||
python3 --version
|
||||
```
|
||||
|
||||
如果显示了像 Python 3.6.6 这样的数字,则说明 Python 3 在你的 Linux 系统上安装好了。
|
||||
|
||||
现在,你可以使用以下命令安装 `pip3`:
|
||||
|
||||
```
|
||||
sudo apt install python3-pip
|
||||
```
|
||||
|
||||
你应该使用以下命令验证 `pip3` 是否已正确安装:
|
||||
|
||||
```
|
||||
pip3 --version
|
||||
```
|
||||
|
||||
它应该显示一个这样的数字:
|
||||
|
||||
```
|
||||
pip 9.0.1 from /usr/lib/python3/dist-packages (python 3.6)
|
||||
```
|
||||
|
||||
这意味着 `pip3` 已成功安装在你的系统上。
|
||||
|
||||
### 如何使用 pip 命令
|
||||
|
||||
现在你已经安装了 `pip`,让我们快速看一些基本的 `pip` 命令。 这些命令将帮助你使用 `pip` 命令来搜索、安装和删除 Python 包。
|
||||
|
||||
要从 Python 包索引 PyPI 中搜索包,可以使用以下 `pip` 命令:
|
||||
|
||||
```
|
||||
pip search <search_string>
|
||||
```
|
||||
|
||||
例如,如果你搜索“stress”这个词,将会显示名称或描述中包含字符串“stress”的所有包。
|
||||
|
||||
```
|
||||
pip search stress
|
||||
stress (1.0.0) - A trivial utility for consuming system resources.
|
||||
s-tui (0.8.2) - Stress Terminal UI stress test and monitoring tool
|
||||
stressypy (0.0.12) - A simple program for calling stress and/or stress-ng from python
|
||||
fuzzing (0.3.2) - Tools for stress testing applications.
|
||||
stressant (0.4.1) - Simple stress-test tool
|
||||
stressberry (0.1.7) - Stress tests for the Raspberry Pi
|
||||
mobbage (0.2) - A HTTP stress test and benchmark tool
|
||||
stresser (0.2.1) - A large-scale stress testing framework.
|
||||
cyanide (1.3.0) - Celery stress testing and integration test support.
|
||||
pysle (1.5.7) - An interface to ISLEX, a pronunciation dictionary with stress markings.
|
||||
ggf (0.3.2) - global geometric factors and corresponding stresses of the optical stretcher
|
||||
pathod (0.17) - A pathological HTTP/S daemon for testing and stressing clients.
|
||||
MatPy (1.0) - A toolbox for intelligent material design, and automatic yield stress determination
|
||||
netblow (0.1.2) - Vendor agnostic network testing framework to stress network failures
|
||||
russtress (0.1.3) - Package that helps you to put lexical stress in russian text
|
||||
switchy (0.1.0a1) - A fast FreeSWITCH control library purpose-built on traffic theory and stress testing.
|
||||
nx4_selenium_test (0.1) - Provides a Python class and apps which monitor and/or stress-test the NoMachine NX4 web interface
|
||||
physical_dualism (1.0.0) - Python library that approximates the natural frequency from stress via physical dualism, and vice versa.
|
||||
fsm_effective_stress (1.0.0) - Python library that uses the rheological-dynamical analogy (RDA) to compute damage and effective buckling stress in prismatic shell structures.
|
||||
processpathway (0.3.11) - A nifty little toolkit to create stress-free, frustrationless image processing pathways from your webcam for computer vision experiments. Or observing your cat.
|
||||
```
|
||||
|
||||
如果要使用 `pip` 安装应用程序,可以按以下方式使用它:
|
||||
|
||||
```
|
||||
pip install <package_name>
|
||||
```
|
||||
|
||||
`pip` 不支持使用 tab 键补全包名,因此包名称需要准确指定。 它将下载所有必需的文件并安装该软件包。
|
||||
|
||||
如果要删除通过 `pip` 安装的 Python 包,可以使用 `pip` 中的 `uninstall` 选项。
|
||||
|
||||
```
|
||||
pip uninstall <installed_package_name>
|
||||
```
|
||||
|
||||
你可以在上面的命令中使用 `pip3` 代替 `pip`。
|
||||
|
||||
我希望这个快速提示可以帮助你在 Ubuntu 上安装 `pip`。 如果你有任何问题或建议,请在下面的评论部分告诉我。
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
via: https://itsfoss.com/install-pip-ubuntu/
|
||||
|
||||
作者:[Abhishek Prakash][a]
|
||||
选题:[lujun9972](https://github.com/lujun9972)
|
||||
译者:[Flowsnow](https://github.com/Flowsnow)
|
||||
校对:[wxy](https://github.com/wxy)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||
|
||||
[a]: https://itsfoss.com/author/abhishek/
|
||||
[1]: https://itsfoss.com/how-to-add-remove-programs-in-ubuntu/
|
||||
[2]: https://itsfoss.com/use-snap-packages-ubuntu-16-04/
|
||||
[3]: https://itsfoss.com/flatpak-guide/
|
||||
[4]: https://itsfoss.com/use-appimage-linux/
|
||||
[5]: https://www.ubuntu.com/
|
||||
[6]: https://en.wikipedia.org/wiki/pip_(package_manager)
|
||||
[7]: https://pypi.org/project/pip/
|
||||
[8]: https://www.python.org/
|
||||
[9]: https://pypi.org/
|
||||
[10]: https://itsfoss.com/stress-terminal-ui/
|
||||
[11]: https://4bds6hergc-flywheel.netdna-ssl.com/wp-content/uploads/2018/10/install-pip-ubuntu.png
|
@ -1,3 +1,4 @@
|
||||
Translating by way-ww
|
||||
How To Create And Maintain Your Own Man Pages
|
||||
======
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
Translating by StdioA
|
||||
|
||||
Design faster web pages, part 1: Image compression
|
||||
======
|
||||
|
||||
|
@ -1,167 +0,0 @@
|
||||
如何在Ubuntu上安装Pip
|
||||
======
|
||||
**Pip是一个命令行工具,允许你安装Python编写的软件包。 学习如何在Ubuntu上安装Pip以及如何使用它来安装Python应用程序。**
|
||||
|
||||
有许多方法可以[在Ubuntu上安装软件][1]。 你可以从软件中心安装应用程序,也可以从下载的DEB文件,PPA(LCTT译者注:PPA即Personal Package Archives,个人软件包集),[Snap软件包][2],也可以使用[使用Flatpak][3],使用[AppImage][4],甚至从旧的源代码安装。
|
||||
|
||||
还有一种方法可以在[Ubuntu][5]中安装软件包。 它被称为Pip,你可以使用它来安装基于Python的应用程序。
|
||||
|
||||
### 什么是Pip
|
||||
|
||||
[Pip][6]代表“Pip Installs Packages”。 [Pip][7]是一个基于命令行的包管理系统。 用于安装和管理[Python语言][8]编写的软件。
|
||||
|
||||
你可以使用Pip来安装Python包索引([PyPI][9])中列出的包。
|
||||
|
||||
作为软件开发人员,你可以使用pip为你自己的Python项目安装各种Python模块和包。
|
||||
|
||||
作为最终用户,你可能需要使用pip来安装一些Python开发的并且可以使用pip轻松安装的应用程序。 一个这样的例子是[Stress Terminal][10]应用程序,你可以使用pip轻松安装。
|
||||
|
||||
让我们看看如何在Ubuntu和其他基于Ubuntu的发行版上安装pip。
|
||||
|
||||
### 如何在Ubuntu上安装Pip
|
||||
|
||||
![Install pip on Ubuntu Linux][11]
|
||||
|
||||
默认情况下,Pip未安装在Ubuntu上。 你必须安装它。 在Ubuntu上安装pip非常简单。 我马上展示给你。
|
||||
|
||||
Ubuntu 18.04默认安装了Python 2和Python 3。 因此,你应该为两个Python版本安装pip。
|
||||
|
||||
Pip,默认情况下是指Python 2。pip3代表Python 3中的Pip。
|
||||
|
||||
注意:我在本教程中使用的是Ubuntu 18.04。 但是这里的教程应该适用于其他版本,如Ubuntu 16.04,18.10等。你也可以在基于Ubuntu的其他Linux发行版上使用相同的命令,如Linux Mint,Linux Lite,Xubuntu,Kubuntu等。
|
||||
|
||||
#### 为Python 2安装pip
|
||||
|
||||
首先,确保已经安装了Python 2。 在Ubuntu上,可以使用以下命令进行验证。
|
||||
|
||||
```
|
||||
python2 --version
|
||||
```
|
||||
|
||||
如果没有错误并且显示了Python版本的有效输出,则说明安装了Python 2。 所以现在你可以使用这个命令为Python 2安装pip:
|
||||
|
||||
```
|
||||
sudo apt install python-pip
|
||||
```
|
||||
|
||||
它将使用它安装pip和许多其他的依赖项。 安装完成后,请确认你已正确安装了pip。
|
||||
|
||||
```
|
||||
pip --version
|
||||
```
|
||||
|
||||
它应该显示一个版本号,如下所示:
|
||||
|
||||
```
|
||||
pip 9.0.1 from /usr/lib/python2.7/dist-packages (python 2.7)
|
||||
```
|
||||
|
||||
这意味着你已经成功在Ubuntu上安装了pip。
|
||||
|
||||
#### 为Python 3安装pip
|
||||
|
||||
你必须确保在Ubuntu上安装了Python 3。 可以使用以下命令检查一下:
|
||||
|
||||
```
|
||||
python3 --version
|
||||
```
|
||||
|
||||
如果显示了像Python 3.6.6这样的数字,则说明Python 3在你的Linux系统上安装好了。
|
||||
|
||||
现在,你可以使用以下命令安装pip3:
|
||||
|
||||
```
|
||||
sudo apt install python3-pip
|
||||
```
|
||||
|
||||
你应该使用以下命令验证pip3是否已正确安装:
|
||||
|
||||
```
|
||||
pip3 --version
|
||||
```
|
||||
|
||||
它应该显示一个这样的数字:
|
||||
|
||||
```
|
||||
pip 9.0.1 from /usr/lib/python3/dist-packages (python 3.6)
|
||||
```
|
||||
|
||||
这意味着pip3已成功安装在你的系统上。
|
||||
|
||||
### 如何使用Pip命令
|
||||
|
||||
现在你已经安装了pip,让我们快速看一些基本的pip命令。 这些命令将帮助你使用pip命令来搜索,安装和删除Python包。
|
||||
|
||||
要从Python包索引PypI中搜索包,可以使用以下pip命令:
|
||||
|
||||
```
|
||||
pip search <search_string>
|
||||
```
|
||||
|
||||
例如,如果你搜索stress这个词,将会显示名称或描述中包含字符串'stress'的所有包。
|
||||
|
||||
```
|
||||
pip search stress
|
||||
stress (1.0.0) - A trivial utility for consuming system resources.
|
||||
s-tui (0.8.2) - Stress Terminal UI stress test and monitoring tool
|
||||
stressypy (0.0.12) - A simple program for calling stress and/or stress-ng from python
|
||||
fuzzing (0.3.2) - Tools for stress testing applications.
|
||||
stressant (0.4.1) - Simple stress-test tool
|
||||
stressberry (0.1.7) - Stress tests for the Raspberry Pi
|
||||
mobbage (0.2) - A HTTP stress test and benchmark tool
|
||||
stresser (0.2.1) - A large-scale stress testing framework.
|
||||
cyanide (1.3.0) - Celery stress testing and integration test support.
|
||||
pysle (1.5.7) - An interface to ISLEX, a pronunciation dictionary with stress markings.
|
||||
ggf (0.3.2) - global geometric factors and corresponding stresses of the optical stretcher
|
||||
pathod (0.17) - A pathological HTTP/S daemon for testing and stressing clients.
|
||||
MatPy (1.0) - A toolbox for intelligent material design, and automatic yield stress determination
|
||||
netblow (0.1.2) - Vendor agnostic network testing framework to stress network failures
|
||||
russtress (0.1.3) - Package that helps you to put lexical stress in russian text
|
||||
switchy (0.1.0a1) - A fast FreeSWITCH control library purpose-built on traffic theory and stress testing.
|
||||
nx4_selenium_test (0.1) - Provides a Python class and apps which monitor and/or stress-test the NoMachine NX4 web interface
|
||||
physical_dualism (1.0.0) - Python library that approximates the natural frequency from stress via physical dualism, and vice versa.
|
||||
fsm_effective_stress (1.0.0) - Python library that uses the rheological-dynamical analogy (RDA) to compute damage and effective buckling stress in prismatic shell structures.
|
||||
processpathway (0.3.11) - A nifty little toolkit to create stress-free, frustrationless image processing pathways from your webcam for computer vision experiments. Or observing your cat.
|
||||
```
|
||||
|
||||
如果要使用pip安装应用程序,可以按以下方式使用它:
|
||||
|
||||
```
|
||||
pip install <package_name>
|
||||
```
|
||||
|
||||
Pip不支持使用tab键补全包名,因此包名称应该是准确的。 它将下载所有必需的文件并安装该软件包。
|
||||
|
||||
如果要删除通过pip安装的Python包,可以使用pip中的remove选项。
|
||||
|
||||
```
|
||||
pip uninstall <installed_package_name>
|
||||
```
|
||||
|
||||
你可以在上面的命令中使用pip3代替pip。
|
||||
|
||||
我希望这个快速提示可以帮助你在Ubuntu上安装pip。 如果你有任何问题或建议,请在下面的评论部分告诉我。
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
via: https://itsfoss.com/install-pip-ubuntu/
|
||||
|
||||
作者:[Abhishek Prakash][a]
|
||||
选题:[lujun9972](https://github.com/lujun9972)
|
||||
译者:[Flowsnow](https://github.com/Flowsnow)
|
||||
校对:[校对者ID](https://github.com/校对者ID)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||
|
||||
[a]: https://itsfoss.com/author/abhishek/
|
||||
[1]: https://itsfoss.com/how-to-add-remove-programs-in-ubuntu/
|
||||
[2]: https://itsfoss.com/use-snap-packages-ubuntu-16-04/
|
||||
[3]: https://itsfoss.com/flatpak-guide/
|
||||
[4]: https://itsfoss.com/use-appimage-linux/
|
||||
[5]: https://www.ubuntu.com/
|
||||
[6]: https://en.wikipedia.org/wiki/Pip_(package_manager)
|
||||
[7]: https://pypi.org/project/pip/
|
||||
[8]: https://www.python.org/
|
||||
[9]: https://pypi.org/
|
||||
[10]: https://itsfoss.com/stress-terminal-ui/
|
||||
[11]: https://4bds6hergc-flywheel.netdna-ssl.com/wp-content/uploads/2018/10/install-pip-ubuntu.png
|
Loading…
Reference in New Issue
Block a user