Virtualenv
Manage your virtualenvs directly from Sublime Text 3
Details
Installs
- Total 38K
- Win 16K
- Mac 12K
- Linux 11K
| Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 0 | 7 | 3 | 1 | 0 | 2 | 0 | 1 | 2 | 0 | 1 | 3 | 1 | 3 | 0 | 1 | 0 | 2 | 1 | 1 | 0 | 2 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 2 | 1 | 0 | 1 | 0 | 1 | 4 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 |
| Mac | 1 | 1 | 0 | 0 | 0 | 0 | 2 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 2 | 2 | 0 | 0 | 2 | 0 | 0 |
| Linux | 0 | 0 | 1 | 1 | 3 | 2 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 2 | 2 | 1 | 0 | 0 | 0 | 3 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 2 | 3 | 0 | 10 | 6 | 4 | 2 | 2 | 1 | 1 | 0 | 1 | 1 |
Readme
- Source
- raw.githubusercontent.com
Sublime Text - Virtualenv
Manage your virtualenvs directly from Sublime Text 3.
Disclaimer: Not Maintained
I cannot maintain this project anymore since I stopped using Sublime Text. If you're interested on taking over reach out and we can discuss.
Features
- Reusable build system. Execute code with a virtualenv without editing your paths manually.
- Virtualenv search. Finds virtualenvs in the open folders or anywhere in your system.
- Activation/Deactivation. Select or disable the current virtualenv easily.
- Create and delete virtualenvs. With target python selection. Supports both the standard virtualenv package and the built-in venv module from Python 3.3.
- Integration with other packages. SublimeREPL.
Support
Only Sublime Text 3. Tested in Linux and Windows but it should work in OS X as well.
Installation
Install through Package Control as usual:
- Open command palette through the menu or with
Ctrl+Shift+P. - Select
Package Control: Install Package. - Search Virtualenv and press enter.
Detailed instructions here.
Usage
Code Execution
Enable the Python + Virtualenv build system through the Tools -> Build System menu and execute with Ctrl+B. If you do not have any other custom Python builds defined, Automatic should work too.
The build system works with or without an activated virtualenv, so it can be used as default build for Python.
Activate
Search Virtualenv: Activate in the command palette and select the desired virtualenv.
Deactivate
The command Virtualenv: Deactivate is available when a virtualenv is activated.
Creating a virtualenv
Choose Virtualenv: New (or Virtualenv: New (venv) for built-in virtualenv), type a destination
path and select a python binary. The new virtualenv will be activated automatically.
Deleting a virtualenv
Use the command Virtualenv: Remove, choose a virtualenv and confirm.
Integrations
Launch a Python REPL using the current virtualenv with the command Virtualenv: SublimeREPL - Python.
Settings
The list of default settings is available through Preferences -> Package Settings -> Virtualenv -> Default. Do not modify the default settings as you will lose all the changes if the package is updated. You should override the necessary settings in Package Settings -> Virtualenv -> User instead.
executable
The executable used for virtualenv creation. Defaults to python -m virtualenv, assuming that virtualenv is installed on the default python prefix.
Depending on your setup you might want to change this to something like: virtualenv, virtualenv-3.3, python3 -m virtualenv, etc.
virtualenv_directories
A list of directory paths searched for virtualenvs. By default, includes virtualenvwrapper's WORKON_HOME. ~/.virtualenvs in Linux and OS X, and ~\Envs in Windows (virtualenvwrapper-win).
There is a shortcut command for quickly adding a virtualenv directory to your settings: Virtualenv: Add directory.
extra_paths
Additional paths searched for python binaries. It might be useful in case of portable python installations. Defaults to none.
Advanced
The current virtualenv path is stored in the project settings and can be edited manually if the project has been saved to a *.sublime-project file.
Extending or customizing the build system should be possible. Just set "target": "virtualenv_exec" in your build system definition, or import and inherit from Virtualenv.commands.VirtualenvExecCommand. More information on Sublime Text's build systems here.
Future plans
Just some ideas for possible improvements.
- Integration with more packages. Paths for SublimeCodeIntel?
- Brother package for
pipcommands.