admin管理员组文章数量:1348086
I am trying to create a local package to handle API calls, but I am having some problems with creating an exe with PyInstaller.
Folder structure:
CompanyAPI
├──CompanyAPI
│ ├──__init__.py
│ ├──site1.py
│ ├──site2.py
├──venv
│ ├── ...
├──setup.py
This works fine in PyCharm, where I can import with
from CompanyAPI import site1
after adding the root folder as a source in the project structure. However, when I try to package with PyInstaller using --hidden-imports, I get the error:
Traceback (most recent call last):
File "main.py", line 3, in <module>
ModuleNotFoundError: No module named 'CompanyAPI'
I have added the root folder with sys.path.extend. I have installed on my system (not a venv) with:
pip install -e ./ --find-links file:/CompanyAPI
[...]
Successfully built CompanyAPI
Installing collected packages: CompanyAPI
Successfully installed CompanyAPI-0.1.0
which are the two solutions I have found online. Issue persists.
Ideally I'd like the package added to the list in PyCharm for ease of use, but being able to make an exe is more important. What am I missing here?
I am trying to create a local package to handle API calls, but I am having some problems with creating an exe with PyInstaller.
Folder structure:
CompanyAPI
├──CompanyAPI
│ ├──__init__.py
│ ├──site1.py
│ ├──site2.py
├──venv
│ ├── ...
├──setup.py
This works fine in PyCharm, where I can import with
from CompanyAPI import site1
after adding the root folder as a source in the project structure. However, when I try to package with PyInstaller using --hidden-imports, I get the error:
Traceback (most recent call last):
File "main.py", line 3, in <module>
ModuleNotFoundError: No module named 'CompanyAPI'
I have added the root folder with sys.path.extend. I have installed on my system (not a venv) with:
pip install -e ./ --find-links file:/CompanyAPI
[...]
Successfully built CompanyAPI
Installing collected packages: CompanyAPI
Successfully installed CompanyAPI-0.1.0
which are the two solutions I have found online. Issue persists.
Ideally I'd like the package added to the list in PyCharm for ease of use, but being able to make an exe is more important. What am I missing here?
Share Improve this question asked 2 days ago JonasWJonasW 234 bronze badges1 Answer
Reset to default 0Have you tried adding the top level CompanyAPI to your PYTHONPATH environment variable?
I don't think you should need to use hidden-imports.
本文标签: pythonUsing PyInstaller to create exe including local packageStack Overflow
版权声明:本文标题:python - Using PyInstaller to create exe including local package - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743844828a2548926.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论