Skip to content

Commit

Permalink
Description to use cmd instead of PowerShell
Browse files Browse the repository at this point in the history
The instructions for installing via PowerShell is still valid, however using standard Windows cmd makes running python-java-support.jar easier.
  • Loading branch information
devadeka authored Aug 15, 2016
1 parent 0440b03 commit f32a411
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions docs/intro/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,23 +50,15 @@ Then create a virtual environment and install VOC into it:
$ cd voc
$ pip install -e .
For Windows the use of PowerShell under Administrator permission is suggested.
For Windows the use of cmd under Administrator permission is suggested instead of PowerShell.

.. code-block:: bash
PS C:\your_dir> virtualenv -p "C:\Python35\python.exe" env
PS C:\your_dir> . .\env\Scripts\activate.ps1
PS C:\your_dir> cd voc
PS C:\your_dir> pip install -e .
> virtualenv -p "C:\Python35\python.exe" env
> env\Scripts\activate.bat
> cd voc
> pip install -e .
If the second step produces a `PSExecutionException : UnauthorizedAccess`, the permissions can be set by:

.. code-block:: bash
PS C:\your_dir> Set-ExecuionPolicy
ExecutionPolicy: remoteSigned
repeat step 2 onwards.
Building the support JAR file
Expand Down

0 comments on commit f32a411

Please sign in to comment.