Install and upgrade problem
Hi Avi,
I wanted to update the package but I got this error message:
1.
sudo pip3 install rich-tools --upgrade Collecting rich-tools Could not find a version that satisfies the requirement rich-tools (from versions: ) No matching distribution found for rich-tools
2.
sudo pip3 install "git+https://github.com/avi-perl/rich_tools"
Collecting git+https://github.com/avi-perl/rich_tools
Cloning https://github.com/avi-perl/rich_tools to /tmp/pip-req-build-kbs7wded
Installing build dependencies ... done
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-req-build-kbs7wded/
@krisztianlukacs Problem is that there is no "setup.py" in this repository and installation is done using pyproject.toml so here is what you need to do:
- Clone repository using
git clone https://github.com/avi-perl/rich_tools cd rich_tools- Install dependencies using
pip install --user -r requirements.txtif you want to install it for the only current user. Remove--userif you want to install it globally (make requirerootoradminprivileges). - Install module using
pip install --user .or remove--userif similar to 3rd step - Done. If you encountered any errors ask away