Update ASnake

ASnake Documentation

Table Of Contents

Current ASnake version:

Fetching...

Update ASnake:

Occasionally you may want to upgrade ASnake. This must be done via your Python installation. If you have an ASnaked-installed alias for ASnake, doing something like ASnake --update won't work, as ASnake relies on pip for its updates.

Use this command (with your proper Python call replaced):

python -m pip install --upgrade ASnake

Alternatively to update to the most bleeding edge version, you can do:

python -m pip install -U git+https://github.com/AhriFoxSnek/ASnake.git

However because you are pulling from live updated version, there may be instabilities. Use at your own risk.

When updating from the git, you might need to remove ASnake and reinstall it first. Otherwise the versions may match and not update any changes.

python -m pip uninstall ASnake  

Check Version:

To check what version you have, you can do this command:

python -m pip show ASnake

Example result:

Name: ASnake
Version: 0.13.43
Summary: Optimizing Python transpiler for the ASnake programming language.
Home-page: https://asnake.org
Author: Ahri Fox
Author-email: 
License: 
Location: /home/ahri/.local/lib/python3.13/site-packages
Requires: autopep8, sly
Required-by: 
Scroll to top