ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Shell​VE

by pykong ST3 Linux

Automagically opens a shell with a project's virtual environment already started.

Details

Installs

  • Total 172
  • Win 0
  • Mac 0
  • Linux 172
Sep 28 Sep 27 Sep 26 Sep 25 Sep 24 Sep 23 Sep 22 Sep 21 Sep 20 Sep 19 Sep 18 Sep 17 Sep 16 Sep 15 Sep 14 Sep 13 Sep 12 Sep 11 Sep 10 Sep 9 Sep 8 Sep 7 Sep 6 Sep 5 Sep 4 Sep 3 Sep 2 Sep 1 Aug 31 Aug 30 Aug 29 Aug 28 Aug 27 Aug 26 Aug 25 Aug 24 Aug 23 Aug 22 Aug 21 Aug 20 Aug 19 Aug 18 Aug 17 Aug 16 Aug 15 Aug 14
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1

Readme

Source
raw.​githubusercontent.​com

ShellVE

Sublime Text 3 plugin to automagically open TerminalView tab with a project's virtual environment already started.

Why?

I always liked how PyCharm linked a project with a perticular virtual environment. You, easily set it up once. Then you never need to remember the correct virtual environment to start in you shell. One project, one virtual environment. And you project automatically runs with the correct one. The Virtualenv plugin for Sublime Text makes a similar linkage possible, but it is only for build systems. If you need more control, e.g. when wanting to install libs to your VE, you are going to need a shell. ShellVE fills that gap for you.

Installation

Do it via PackageControl. You likely know how to. (Else see PackageControl Usage.)

Satisfy dependencies

As the plugin relies on TerminalView as the terminal emulator and sole dependency. Hence you need to install TerminalView before you can use ShellVE.

Usage

1. Make sure virtual environment path is included into your .sublime-project:

[
          "settings": {
              "python_interpreter": "/home/user/.virtualenvs/example/bin/python"
          }
    ]

Note: This is the same format for specifying the VE path as used in the essential python development plugin Anaconda. Yet, the format is different from that used in the plugin Virtualenv.

2a. Just open the project and a view with a shell window with your virtual environment already started will automatically open.

How cool is that?
This is dependend on the sophisticated terminal plugin TerminalView by the ingenious Wramberg.

2b. Alternatively open via keybinding.

This is useful if you closed the automatically spawnded TerminalView.

Default keybindings:

Linux: ctrl + super + v

Limitations

  1. Currently works only on Linux. I am not going to expand it to other platforms, yet I will welcome any pull requests in this regard.

  2. Currently only works with TerminalView as the dependend terminal plugin. There are other great terminal emulators for Sublime Text, like Terminal or Glue. I am not going to expand it to other terminal plugins though either. Yet, also welcome regarding pull requests.

  3. Environment variables are not inherited from the virtual environment currently

TODO

  • Making sure terminal is always started in project folder.
  • Ensure environment variables are always the same, irrespective if a virtual environment is started in the system terminal or ShellVE.

Contributors

  • A big ThankYou to Wramberg for providing the amazing TerminalView plugin!