DarkCat09 / python-aternos

[UNMAINTAINED] Unofficial Aternos API written in Python
https://pypi.org/project/python-aternos/
Apache License 2.0
92 stars 12 forks source link

Can i just clone the git and move the contents into my /usr/local/python3.9/ folder? #40

Closed KarsonTheFoxx closed 2 years ago

KarsonTheFoxx commented 2 years ago

python3 -m pip install python-aternos

didnt work because i was getting FileNotFound in the module metadata's setup.py

so is there a way i can manually add these file to my raspberry pi? (im using the 32 bit Raspberry pi OS based of buster 10)

DarkCat09 commented 2 years ago
pip uninstall python-aternos
git clone https://codeberg.org/DarkCat09/python-aternos.git
cd python-aternos
sudo pip install -e .
DarkCat09 commented 2 years ago

When new version with bugfixes will be released, you should install module from pip to receive updates easier.

# Reinstall
sudo pip uninstall python-aternos
pip install -U python-aternos

# Remove cloned git repo
rm -rf ~/python-aternos