-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pipx #24
Comments
Hi @Chuck-Carr It is dependant on your installation. You do not give enough details to troubleshot with you. What OS, which version, what apt package, what ansible error output and so on. |
Fresh download of Parrot HTB, that should be pretty obvious..... it literally states the error output. |
I had the same issue when I tried to install pipx.
I tried installing userpath but apparently it's already installed:
I just skipped it by removing pipx from the apt-stuff.yml file. I also had to remove the |
Hi @NicholsonJD , Thanks for the command output. I will try to give you useful advices but I did not experienced it on my own. Does this playbook work on your end ? ---
- name: "Update package cache (Debian/Ubuntu)"
apt:
update_cache: yes
cache_valid_time: 3600
when: ansible_os_family == 'Debian'
become: true
become_method: sudo
- name: "Upgrade all packages (Debian/Ubuntu)"
apt:
upgrade: full
autoremove: yes
autoclean: yes
become: true
become_method: sudo
- name: "Installing Packages"
package:
name:
- pipx Cheers |
I could not get this to run and could not install pipx using apt. I got the following error: "pipx depends on python3-userpath but it is not installable".
I was able to get it to run when I manually isntalled pipx using "python3 -m pip install pix"
The text was updated successfully, but these errors were encountered: