Skip to content

Added infos about PyCharm, Conferences, User Groups and Virtualenv(wrapper) #5

New issue

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

Merged
merged 6 commits into from
Oct 9, 2011
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
docs/_build
.idea
16 changes: 15 additions & 1 deletion docs/intro/community.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,18 @@ Submitting a PEP

Here's an overview of the PEP acceptance workflow:

.. image:: http://www.python.org/dev/peps/pep-0001/pep-0001-1.png
.. image:: http://www.python.org/dev/peps/pep-0001/pep-0001-1.png


Python Conferences
--------------------------

The major venue of the Python community are developer conferences. The two most notable conferences are PyCon, which is held in the US and it's overseas sibling EuroPython.

A comprehensive list of conferences is maintained `here <http://www.pycon.org/>`_.


Python User Groups
--------------------------

User Groups are where a bunch of Python developers meet to present or talk about python topics of interest. A list of local user groups is maintained in the `Python Software Foundation Wiki <http://wiki.python.org/moin/LocalUserGroups>`_.
20 changes: 18 additions & 2 deletions docs/starting/dev-env.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,10 @@ the following lines into your vimrc::
IDEs
::::

PyCharm
-------
PyCharm / IntelliJ IDEA
-----------------------

PyCharm is developed by JetBrains, also known for IntelliJ IDEA. Both share the same code base and most of PyCharm's features can be brought to IntelliJ with the free `Python Plug-In<http://plugins.intellij.net/plugin/?id=631/>`_..

Eclipse
-------
Expand All @@ -84,11 +85,26 @@ Interpreter Tools
virtualenv
----------

Virtualenv is a tool to keep the dependencies required by different projects in separate places, by creating virtual Python environments for them.
It solves the "Project X depends on version 1.x but, Project Y needs 4.x" dilemma and keeps your global site-packages directory clean and manageable.

virtualenvwrapper
-----------------

Virtualenvwrapper makes virtualenv a pleasure to use by wrapping the command line API with a nicer CLI.

::

pip install virtualenvwrapper


Put this into your `~/.bash_profile` (Linux/Mac) file:

::

export VIRTUALENVWRAPPER_VIRTUALENV_ARGS='--no-site-packages'

This will prevent your virtualenvs from relying on your (global) site packages directory, so that they are completely separate..

Other Tools
:::::::::::
Expand Down