I have installed latest version of PyPy using sudo apt install pypy pypy-dev
on my Xubuntu. When I try python --version
I see that I have Python 3.8.10 installed. When I try pypy --version
I got
Python 2.7.13 (7.3.1+dfsg-2, Apr 21 2020, 05:05:41)
[PyPy 7.3.1 with GCC 9.3.0]
Thats a problem because my script is written in Python 3 and I want to use pandas library in this script. How can I upgrade PyPy to Python 3? Thanks a lot.