fix wrong url - online edit of handbook/computing/wsllaptop.html

This commit is contained in:
Expo on server 2023-04-26 22:17:17 +01:00
parent d000d1bb11
commit a9b8873c04

View File

@ -164,7 +164,7 @@ and <a href="https://www.windowscentral.com/how-install-wsl2-windows-10">here</a
<h3 id="pain">The pain continues: Python on WSL2 </h3>
<p>WSL2 installs python by default, but it may be a rather old python (depending on the history of your laptop, phase of moon etc.) and if you want development speed you want python3.11. [NB the expo server currently runs python 3.9, so don't use any post3.9 idioms in your code.]
<p>To install python3.11 and pip follow <a href="https://stackoverflow.com/questions/70260339/cant-run-pip-on-python-3-11">these instructions</a> to the letter. But that's not enough, you need to configure pip to work properly with python3.11 (this is because it's a bit bleeding edge as yet), so you ALSO then need to re-install the latest with:
<p>To install python3.11 and pip follow <a href="https://www.linuxcapable.com/how-to-install-python-3-11-on-ubuntu-linux/">these instructions</a> to the letter. But that's not enough, you need to configure pip to work properly with python3.11 (this is because it's a bit bleeding edge as yet), so you ALSO then need to re-install the latest with:
</p>
<code><pre>
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.11