21 lines
429 B
Markdown
21 lines
429 B
Markdown
|
|
# PortaPy
|
||
|
|
|
||
|
|
PortaPy is a module for running python from node.
|
||
|
|
|
||
|
|
To install it, simply run
|
||
|
|
|
||
|
|
```
|
||
|
|
npm install -g portapy
|
||
|
|
```
|
||
|
|
|
||
|
|
Global installation gives you access to the normal python command, as if it were installed normally.
|
||
|
|
|
||
|
|
```
|
||
|
|
C:\Users\Cobra>python
|
||
|
|
Python 3.7.1 (v3.7.1:260ec2c36a, Oct 20 2018, 14:05:16) [MSC v.1915 32 bit (Intel)] on win32
|
||
|
|
Type "help", "copyright", "credits" or "license" for more information.
|
||
|
|
>>>exit()
|
||
|
|
|
||
|
|
```
|
||
|
|
|