I am just started looking/experimenting pyscript
as per the current python code which is running on Python 3.6.0
. But looks like pyscript loads the python version along with Pyodide
and it is retuning the latest stable version based on the Pyodide
version.
Problem Statement : Is there any way we can change/switch the python version as per the need while working with pyscript
?
What did I tried so far to verify the Pyodide
and Python
version :
I checked the version of Pyodide
by using below code.
<link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css"/>
<script defer src="https://pyscript.net/latest/pyscript.js"></script>
<py-script>import pyodide_js; print(pyodide_js.version)</py-script>
As per the above code snippet, It is returning 0.21.2
, Now to check python version.
<link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css"/>
<script defer src="https://pyscript.net/latest/pyscript.js"></script>
<py-script>
import pyodide_js;
import sys;
print('Pyodide version : ' + pyodide_js.version)
print('Python version : ' + sys.version)
</py-script>
It is returning 3.10.2
but I want to change/switch it to 3.6.0
.