File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,12 @@ but it may come in handy when using the embedded IPython console.
40
40
``` bash
41
41
sudo apt-get install -y python3-pip python3-setuptools python3-wheel
42
42
sudo apt-get install -y python3-numpy python3-pyqt5 python3-pyqt5.qtsvg git-core
43
- sudo pip3 install git+https://github.com/DroneCAN/gui_tool@master
43
+ python3 -m pip install git+https://github.com/DroneCAN/gui_tool@master
44
44
```
45
45
46
46
#### Troubleshooting
47
47
48
- If installation fails with an error like below, try to install IPython directly with ` sudo pip3 install ipython` :
48
+ If installation fails with an error like below, try to install IPython directly with ` python3 -m pip install ipython` :
49
49
50
50
> error: Setup script exited with error in ipython setup command:
51
51
> Invalid environment marker: sys_platform == "darwin" and platform_python_implementation == "CPython"
@@ -59,7 +59,7 @@ If you're still unable to install the package, please open a ticket.
59
59
#### Fedora 29+
60
60
``` bash
61
61
sudo dnf install python3-PyQt5
62
- sudo pip3 install git+https://github.com/DroneCAN/gui_tool@master
62
+ python3 -m pip install git+https://github.com/DroneCAN/gui_tool@master
63
63
```
64
64
65
65
## Installing on Windows
@@ -101,7 +101,7 @@ If you're prompted to install Command Line Developer Tools, agree.
101
101
``` bash
102
102
sudo port selfupdate
103
103
sudo port install curl-ca-bundle py35-pip py35-pyqt5 py35-numpy
104
- sudo python3.5 -m pip install git+https://github.com/DroneCAN/gui_tool@master
104
+ python3.5 -m pip install git+https://github.com/DroneCAN/gui_tool@master
105
105
```
106
106
107
107
We would like to provide prebuilt application packages instead of the mess above.
You can’t perform that action at this time.
0 commit comments