mirror of
https://github.com/kennethreitz/python-guide.git
synced 2026-06-05 23:00:18 +00:00
add Windows-specific info about virtualenvwrapper; ignore more files
This commit is contained in:
@@ -1,2 +1,6 @@
|
|||||||
docs/_build
|
docs/_build
|
||||||
.idea
|
.idea
|
||||||
|
|
||||||
|
# Ignore irrelevant files from the Sublime Text editor
|
||||||
|
*.sublime-workspace
|
||||||
|
*.sublime-project
|
||||||
|
|||||||
@@ -74,6 +74,17 @@ To install (make sure **virtualenv** is already installed):
|
|||||||
|
|
||||||
(`Full virtualenvwrapper install instructions <http://www.doughellmann.com/docs/virtualenvwrapper/#introduction>`_.)
|
(`Full virtualenvwrapper install instructions <http://www.doughellmann.com/docs/virtualenvwrapper/#introduction>`_.)
|
||||||
|
|
||||||
|
For Windows, you can use the `virtualenvwrapper-powershell <https://bitbucket.org/guillermooo/virtualenvwrapper-powershell>`_ clone.
|
||||||
|
|
||||||
|
To install (make sure **virtualenv** is already installed):
|
||||||
|
|
||||||
|
.. code-block:: console
|
||||||
|
|
||||||
|
PS> pip install virtualenvwrapper-powershell
|
||||||
|
PS> $env:WORKON_HOME="~/Envs"
|
||||||
|
PS> mkdir $env:WORKON_HOME
|
||||||
|
PS> import-module virtualenvwrapper
|
||||||
|
|
||||||
Basic Usage
|
Basic Usage
|
||||||
~~~~~~~~~~~
|
~~~~~~~~~~~
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user