19-07-2020
-python 3.8 -htpasswd -modules Powershell
This commit is contained in:
@@ -46,6 +46,48 @@ $ python3 -m site --user-base
|
||||
|
||||
|
||||
|
||||
### Passage de Python 3.7 à 3.8:
|
||||
|
||||
Erreur avec pip3:
|
||||
|
||||
```bash
|
||||
$ pip3 list --outdated --format columns
|
||||
zsh: /usr/local/bin/pip3: bad interpreter: /usr/local/opt/python/bin/python3.7: no such file or directory
|
||||
```
|
||||
|
||||
```bash
|
||||
$ pip3 -V
|
||||
zsh: /usr/local/bin/pip3: bad interpreter: /usr/local/opt/python/bin/python3.7: no such file or directory
|
||||
pip 19.0.3 from /Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.7/lib/python3.7/site-packages/pip (python 3.7)
|
||||
```
|
||||
|
||||
Il faut donc mettre à jour pip3:
|
||||
|
||||
```bash
|
||||
$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
|
||||
% Total % Received % Xferd Average Speed Time Time Time Current
|
||||
Dload Upload Total Spent Left Speed
|
||||
100 1825k 100 1825k 0 0 2692k 0 --:--:-- --:--:-- --:--:-- 2688k
|
||||
|
||||
$ python3 get-pip.py
|
||||
Collecting pip
|
||||
Using cached pip-20.1.1-py2.py3-none-any.whl (1.5 MB)
|
||||
Installing collected packages: pip
|
||||
Attempting uninstall: pip
|
||||
Found existing installation: pip 20.0.2
|
||||
Uninstalling pip-20.0.2:
|
||||
Successfully uninstalled pip-20.0.2
|
||||
Successfully installed pip-20.1.1
|
||||
```
|
||||
|
||||
```bash
|
||||
$ pip3 -V
|
||||
|
||||
pip 20.1.1 from /usr/local/lib/python3.8/site-packages/pip (python 3.8)
|
||||
```
|
||||
|
||||
|
||||
|
||||
### idle:
|
||||
|
||||
**idle** est l'éditeur par défaut de Python
|
||||
|
||||
Reference in New Issue
Block a user