当我 运行 我的独立软件在另一台笔记本电脑上时需要 python 模块库
Require python modules libraries when i run my standalone software in another laptop
我的主 laptop.But 我的独立软件已具备所有必需的 python 模块库 laptop.But 如果我 运行 我的软件在另一台笔记本电脑上,它正在 errors.Do 我必须重新安装那些 python 模块(例如 PySide2、PyQt)?或者我应该使用此命令将模块复制或安装到我的软件文件夹中吗?
pip install --target=d:\somewhere\other\than\the\default package_name
你知道我的意思吗?我没有看到任何解决方案 post.So 这个问题很奇怪还是软件开发人员如何做到这一点?
为了在不止一台笔记本电脑上工作,我建议在虚拟环境中工作。这将允许您一次安装所有依赖项。
- 首先,你应该 create the virtual environment
- 然后,为了获取您电脑中的所有库,请使用
pip freeze
。当你拥有它们时,在根文件夹中创建一个 requirements.txt 并将它们包含在其中。
- 当您 activate the virtual environment and gotten inside of it 时,使用命令
pip install -r requirements.txt
来安装您在另一台电脑上使用的库。
我的主 laptop.But 我的独立软件已具备所有必需的 python 模块库 laptop.But 如果我 运行 我的软件在另一台笔记本电脑上,它正在 errors.Do 我必须重新安装那些 python 模块(例如 PySide2、PyQt)?或者我应该使用此命令将模块复制或安装到我的软件文件夹中吗?
pip install --target=d:\somewhere\other\than\the\default package_name
你知道我的意思吗?我没有看到任何解决方案 post.So 这个问题很奇怪还是软件开发人员如何做到这一点?
为了在不止一台笔记本电脑上工作,我建议在虚拟环境中工作。这将允许您一次安装所有依赖项。
- 首先,你应该 create the virtual environment
- 然后,为了获取您电脑中的所有库,请使用
pip freeze
。当你拥有它们时,在根文件夹中创建一个 requirements.txt 并将它们包含在其中。 - 当您 activate the virtual environment and gotten inside of it 时,使用命令
pip install -r requirements.txt
来安装您在另一台电脑上使用的库。