我正在尝试使用这个新工具来分发名为 Pynsist ( http://pynsist.readthedocs.org/en/latest/index.html ) 的 Python 项目。
它工作得很好,一切都很好,但由于某种原因,安装后没有找到任何包,解决问题的方法是将包从“pkg”文件夹移动到主文件夹,这真的很奇怪。我的安装程序.cfg:
[Application]
name=Seek scrapper
version=1.0
# How to launch the app - this calls the 'main' function from the 'myapp' package:
entry_point=Scrape_pages_to_txt:main
[Python]
version=3.3.5
bitness=32
[Include]
# Importable packages that your application requires, one per line
packages = requests
bs4
selenium
xlsxwriter
# Other files and folders that should be installed
files = ad_urls.txt
xlsx_writer.py
Scrape_ads_from_urls.py
我在这里做错了什么?