README.md: use pip3 instead of pip
This commit is contained in:
parent
fe86469c6c
commit
45cea44fac
1 changed files with 3 additions and 3 deletions
|
@ -122,19 +122,19 @@ with the following command:
|
||||||
|
|
||||||
You can then install the package using:
|
You can then install the package using:
|
||||||
|
|
||||||
$ pip install img2pdf
|
$ pip3 install img2pdf
|
||||||
|
|
||||||
If you prefer to install from source code use:
|
If you prefer to install from source code use:
|
||||||
|
|
||||||
$ cd img2pdf/
|
$ cd img2pdf/
|
||||||
$ pip install .
|
$ pip3 install .
|
||||||
|
|
||||||
To test the console script without installing the package on your system,
|
To test the console script without installing the package on your system,
|
||||||
use virtualenv:
|
use virtualenv:
|
||||||
|
|
||||||
$ cd img2pdf/
|
$ cd img2pdf/
|
||||||
$ virtualenv ve
|
$ virtualenv ve
|
||||||
$ ve/bin/pip install .
|
$ ve/bin/pip3 install .
|
||||||
|
|
||||||
You can then test the converter using:
|
You can then test the converter using:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue