1. 打开PyCharm,Create Project,选择Pure Python,Location为存放代码的地址,Interpreter为使用的解释器,选择安装过的anaconda的解释器。
2. New Directory,再在文件夹上New Python File。可以开始写代码了:print ‘hello world‘ 点击run按钮就可以执行出结果了:hello world。
在default settings里Editor -》File and Code Templates -》python scripts里可以添加模板。
if __name__ = ‘__main__‘:
hello()
如果这个模块是被导入到文件的,则不会被执行,写这两行就是为了执行当前文件里的代码,做测试使用。
virtualenv:多个python运行环境共存;每个环境维持自己的包版本;相同模块的不同版本
virtualenv Dev
activate 激活环境
deactivate 退出环境
命令:
pip freeze:可以查看安装了哪些包
pip install virtualenv:安装virtualenv
virtualenv:验证一下有没有安装好
pip会自动解决包与包之间的依赖关系,如果安装一个包需要安装另一个包,pip会自动帮我们安装。
命令:
d:
cd learnpython
virtualenv Test 创建了虚拟环境Test
cd Test
cd Scripts
activate 激活了这个Test虚拟环境
deactivate.bat 退出了Test虚拟环境
在文件 -》default settings菜单里 Default Project ->Project Interpreter中选择Test的虚拟环境里的解释器,Test -》Scripts -》Python,这样就可以在虚拟环境里跑代码了。相当于开发在自己本地跑代码一样的。