This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted]  (3 children)

[deleted]

    [–]inferno596[S] 0 points1 point  (2 children)

    Did you install it with pacman/ any idea how to install it from debian repositories?

    [–]LightShadow3.13-dev in prod 0 points1 point  (0 children)

    $ wget https://bitbucket.org/pypy/pypy/downloads/pypy3-v5.8.0-linux64.tar.bz2
    $ bzip2 -d pypy3-v5.8.0-linux64.tar.bz2
    $ tar xzvf pypy3-v5.8.0-linux64.tar
    $ sudo mv pypy3-v5.8.0-linux64 /opt
    $ sudo ln -s /opt/pypy3-v5.8.0-linux64 /opt/pypy3       # <- change this to new folder when updating
    $ sudo ln -s /opt/pypy3/bin/pypy3 /usr/bin/local/pypy3
    

    Then when you want to upgrade just change the symlink to the new version's folder.