We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我是个py新手 我想使用spiderkeeper 自己增加一下功能,请问我该怎样才能使源码跑起来。而不是使用 pip安装
The text was updated successfully, but these errors were encountered:
一种方法是修改完源码后使用Python setup.py install 重新安装,使新增模块生效 另一种比较麻烦,因为代码中模块引用路径都是使用site-packages包管理下spiderkeeper,所以flask无法启动当前目录应用,需要调整代码模块引用路径 例如: from SpiderKeeper.app import db, api, agent, app from app import db, api, agent, app
Sorry, something went wrong.
第一种方法我明白了, 第二种方法是不是把代码里面from SpiderKeeper.app import db, api, agent, app 这种引用 改成 from app import db, api, agent, app 这样呢?
No branches or pull requests
我是个py新手
我想使用spiderkeeper 自己增加一下功能,请问我该怎样才能使源码跑起来。而不是使用
pip安装
The text was updated successfully, but these errors were encountered: