Update install instructions
This commit is contained in:
parent
3be947e283
commit
d50a29b21c
1 changed files with 4 additions and 2 deletions
|
@ -7,13 +7,15 @@
|
||||||
### Linux
|
### Linux
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo python3 setup.py install
|
pip install .
|
||||||
```
|
```
|
||||||
|
|
||||||
### Windows (from PowerShell)
|
### Windows (from PowerShell)
|
||||||
|
|
||||||
|
Ensure you have "C:\Users\${env:USERNAME}\AppData\Roaming\Python\Python${python_version}\Scripts\" in your Path environment variable.
|
||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
& $(where.exe python).split()[0] setup.py install
|
& $(where.exe pip).split()[0] install .
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
Loading…
Reference in a new issue