如何让pyinstaller在Ubuntu上工作?

时间:2016-09-22 18:28:29

标签: linux python-3.x ubuntu pyinstaller ubuntu-16.04

我正在使用Ubuntu 16并安装了Python 3.5,也安装了pip3,而pip3我安装了PyInstaller。我无法运行PyInstaller。每当我在终端输入pyinstaller时,我得到以下错误?我必须添加路径吗?如果是这样,我该怎么做?感谢

pyinstaller: command not found

1 个答案:

答案 0 :(得分:1)

首先你需要找到pip安装PyInstaller的地方:

import random
for d in dict_list:
    random_pair = random.choice(d.items())
    # Then do whatever you were going to do with that pair
    # then it goes on to the next dictionary in the list

然后,您可以使用完整路径运行它,也可以将其添加到.bashrc文件中。要添加到.bashrc,请创建以下行或将路径添加到任何现有的" export PATH =" .bashrc中的行(位于主目录中):

sudo find / -name pyinstaller

保存该文件并注销/登录以使其生效。

要使所有用户都可以使用该路径,请将其添加到/ etc / environment文件中(必须对其进行sudo编辑)。