1 python有没有IDE?
2 python shell 是什么?
3 如何用python生成exe?
你可以用python tools for visual studio,最强大的ide,也可以用eclipse。
shell是python的外壳
生成exe可以用py2exe、PyInstaller
参考:http://jingyan.baidu.com/article/f25ef254082ac6482c1b8223.html
有很多,比如pycharm等,结合python
命令行运行pythin.exe
py2exe等工具生成
python IDE有,很多。网上可以找到。python Shell 就是命令行执行
Python IDE 推荐用 PyCharm
我个人喜欢用Sublime的插件做IDE
Python shell就是在cmd中输入python交互的命令行
pyinstaller可以编译成exe,但是调用库还是会有问题,需要python环境才能执行
pip install pyinstaller
Python编译成exe(写在一个bat里):
set /p fileName=
pyinstaller -F ./%fileName%
Python 的IDE集成环境推荐是用 PyCharm
Python3入门机器学习经典算法与应用
地址: https://pan.baidu.com/s/19TUGjORKH1ULZ-8qNxQUgw
密码:bymr
ide有很多,pycharm,Ulipad,Spyder,Sublime Text......我个人用pycharm,感觉还不错
python shell是指cmd命令行交互
生成exe可以用Pyinstaller或者Py2Exe都可以,个人常用Pyinstalle