PyCharm : My Notes
PyCharm is an IDE for Python development. Here are few key take away points:
$ pip freeze > requirements.txt
This will create a requirements.txt file, which contains a simple list of all the packages in the current environment, and their respective versions. Later, when a different developer (or you, if you need to re- create the environment) can install the same packages, with the same versions by running
$ pip install -r requirements.txt
================================================================================
Code Completion
1. Basic : Ctrl + Space
2. Smart : Ctrl + Shift + Space
3. Within context : Atl + / Atl + Shift + /
4. Post Fix completion : Space OR Enter OR Tab
Ctrl + Shift + Enter to make all auto corrections
================================================================================
Pipenv is a tool that provides all necessary means to create a virtual environment for your Python project. It automatically manages project packages through the Pipfile file as you install or uninstall packages.
================================================================================
Two settings
1. Project level settings are applied to current project and stored at :
C:\Users\\PycharmProjects\schoop_app\.idea
2. Global settings are like template, it applies to new projects. Files-> Settings for new projects
================================================================================
Keyboard short cut
Double Shift : search
Ctrl+N
Ctrl+Shift+N
Ctrl+Shift+Alt+N : Find and jump to the desired class, file, or symbol.
Ctrl+E : View Recent Files-
================================================================================
0 comments:
Post a Comment